diff options
| author | 2026-07-22 17:37:10 +0200 | |
|---|---|---|
| committer | 2026-07-22 17:37:10 +0200 | |
| commit | f28781dd1dd718f45bf1cef82d1ce6eb4792b4ca (patch) | |
| tree | ed5bd923bca11cc75e0568245ea3518a6713041b /authentication/templates/register.html | |
| parent | 498c79f434856aa68e9a883247ea69a22256fce6 (diff) | |
| download | server-f28781dd1dd718f45bf1cef82d1ce6eb4792b4ca.tar.gz server-f28781dd1dd718f45bf1cef82d1ce6eb4792b4ca.tar.bz2 server-f28781dd1dd718f45bf1cef82d1ce6eb4792b4ca.zip | |
Added management interface
Diffstat (limited to 'authentication/templates/register.html')
| -rw-r--r-- | authentication/templates/register.html | 24 |
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 %} | ||
