nk20/templates/member/signup.html

15 lines
328 B
HTML
Raw Normal View History

2019-08-11 14:22:52 +00:00
<!-- 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 %}
2019-08-11 15:39:05 +00:00
{{ user_form|crispy }}
{{ form|crispy }}
2019-08-11 14:22:52 +00:00
<button type="submit">Sign up</button>
</form>
{% endblock %}