src: login base added

This commit is contained in:
2022-07-29 17:57:54 +02:00
parent a457f355d1
commit eaf690f832
7 changed files with 92 additions and 40 deletions

18
src/templates/login.html Normal file
View File

@@ -0,0 +1,18 @@
{% extends "template.html" %}
{% 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 %}