blob: 576db783c2197f9aa5238d143a45a01801ee4833 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
{% extends "./base.html" %}
{% block content %}
<form method="post">
<input type="email" name="email" {% if form %}value="{{ form.email }}"{% endif %} placeholder="email" />
{% if errors and errors.email%}
{{ errors.email }}
{% endif %}
<input type="password" name="password" />
{% if errors and errors.password%}
{{ errors.password }}
{% endif %}
<input type="password" name="verify_password" />
{% if errors and errors.password%}
{{ errors.verify_password }}
{% endif %}
<button type="submit">Register</button>
</form>
{% endblock %}
|