blob: 2db251234ba9b431c2e846de2236de362d58bd15 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
{% extends "./base.html" %}
{% block content %}
<form method="post">
<input type="text" name="username" {% if form %}value="{{ form.username }}"{% endif %} placeholder="username" />
{% if errors and errors.username %}
{{ errors.username }}
{% endif %}
<input type="password" name="password" />
{% if errors and errors.password%}
{{ errors.password }}
{% endif %}
<button type="submit">Login</button>
</form>
{% endblock %}
|