This commit is contained in:
Rich
2021-07-03 08:40:30 +01:00
parent 582fca2e90
commit a38c6af449
4 changed files with 39 additions and 1 deletions

16
app/templates/login.html Normal file
View File

@@ -0,0 +1,16 @@
{% block content %}
<h1>Sign In</h1>
<form action="" method="post" novalidate>
{{ form.hidden_tag() }}
<p>
{{ form.username.label }}<br>
{{ form.username(size=32) }}
</p>
<p>
{{ form.password.label }}<br>
{{ form.password(size=32) }}
</p>
<p>{{ form.remember_me() }} {{ form.remember_me.label }}</p>
<p>{{ form.submit() }}</p>
</form>
{% endblock %}