1
0
mirror of https://gitlab.crans.org/bde/nk20 synced 2024-11-26 10:27:07 +00:00
nk20/templates/member/signup.html
Pierre-antoine Comby 4a52272558 fix sign up forms
2019-08-11 17:39:05 +02:00

15 lines
328 B
HTML

<!-- templates/signup.html -->
{% extends 'base.html' %}
{% load crispy_forms_tags %}
{% block title %}Sign Up{% endblock %}
{% block content %}
<h2>Sign up</h2>
<form method="post">
{% csrf_token %}
{{ user_form|crispy }}
{{ form|crispy }}
<button type="submit">Sign up</button>
</form>
{% endblock %}