blob: fcba5cdcaa9ff0eb182feda843d10e1c828f3223 (
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="email" 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 %}
|