mirror of
https://github.com/ae-utbm/sith.git
synced 2025-03-31 08:50:26 +00:00
14 lines
276 B
HTML
14 lines
276 B
HTML
<h1>Register a user</h1>
|
|
|
|
{% if username %}
|
|
You registered successfully, {{ username }}!
|
|
{% endif %}
|
|
|
|
<form action="{% url 'sith:register' %}" method="post">
|
|
{% csrf_token %}
|
|
<ul>
|
|
{{ form }}
|
|
<li><input type="submit" value="Register!" /></li>
|
|
</ul>
|
|
</form>
|