nk20/templates/member/signup.html

18 lines
406 B
HTML
Raw Normal View History

2019-08-11 14:22:52 +00:00
<!-- templates/signup.html -->
{% extends 'base.html' %}
{% load crispy_forms_tags %}
{% load i18n %}
2019-08-11 14:22:52 +00:00
{% block title %}Sign Up{% endblock %}
{% block content %}
<h2>Sign up</h2>
<form method="post">
{% csrf_token %}
{{ form|crispy }}
2020-02-03 18:24:23 +00:00
{{ profile_form|crispy }}
<button class="btn btn-link" type="submit">
{% trans "Sign Up" %}
</button>
2019-08-11 14:22:52 +00:00
</form>
{% endblock %}