summaryrefslogtreecommitdiffstats
path: root/authentication/templates/register.html
diff options
context:
space:
mode:
Diffstat (limited to 'authentication/templates/register.html')
-rw-r--r--authentication/templates/register.html24
1 files changed, 24 insertions, 0 deletions
diff --git a/authentication/templates/register.html b/authentication/templates/register.html
new file mode 100644
index 0000000..576db78
--- /dev/null
+++ b/authentication/templates/register.html
@@ -0,0 +1,24 @@
1{% extends "./base.html" %}
2
3{% block content %}
4 <form method="post">
5
6 <input type="email" name="email" {% if form %}value="{{ form.email }}"{% endif %} placeholder="email" />
7 {% if errors and errors.email%}
8 {{ errors.email }}
9 {% endif %}
10
11
12 <input type="password" name="password" />
13 {% if errors and errors.password%}
14 {{ errors.password }}
15 {% endif %}
16
17 <input type="password" name="verify_password" />
18 {% if errors and errors.password%}
19 {{ errors.verify_password }}
20 {% endif %}
21
22 <button type="submit">Register</button>
23 </form>
24{% endblock %}