mirror of
https://github.com/StefBuwalda/WebTech.git
synced 2025-10-30 11:19:58 +00:00
Copied structure and files from Roos
This commit is contained in:
18
application/auth/templates/login.html
Normal file
18
application/auth/templates/login.html
Normal file
@@ -0,0 +1,18 @@
|
||||
{% extends 'base.html' %}
|
||||
|
||||
{% block title %}
|
||||
Login
|
||||
{% endblock %}
|
||||
|
||||
{% block content %}
|
||||
{% if feedback %}
|
||||
<p>{{feedback}}</p>
|
||||
{% endif %}
|
||||
|
||||
<form method="POST">
|
||||
{{ form.hidden_tag() }}
|
||||
{{ form.username.label }} {{ form.username() }}<br>
|
||||
{{ form.password.label }} {{ form.password() }}<br>
|
||||
{{ form.submit() }}
|
||||
</form>
|
||||
{% endblock %}
|
||||
Reference in New Issue
Block a user