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 633663f95d add signup view
2019-08-11 16:22:52 +02:00

15 lines
340 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 %}
{{ form.as_p |crispy }}
{{ user_form.as_p |crispy }}
<button type="submit">Sign up</button>
</form>
{% endblock %}