FoBot/web/templates/auth/create_user.html

14 lines
469 B
HTML
Raw Permalink Normal View History

2018-10-08 23:41:54 +02:00
{% extends "../base.html" %}
{% block body %}
2018-11-10 21:55:40 +01:00
{% if error %}
<span style="color: red">Error: {{ error }}</span><p>
{% end %}
<form action="/auth/create" method="POST">
Email: <input name="email" type="text" required><br>
Name: <input name="name" type="text" required><br>
Password: <input name="password" type="password" required><br>
{% module xsrf_form_html() %}
<input type="submit">
</form>
2018-10-08 23:41:54 +02:00
{% end %}