FoBot/web/templates/auth/create_user.html

11 lines
346 B
HTML
Raw Permalink Normal View History

2018-10-08 23:41:54 +02:00
{% extends "../base.html" %}
{% block body %}
<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>
{% end %}