nk20/templates/registration/signup.html

18 lines
437 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 %}
2020-03-11 11:05:29 +00:00
{% block title %}{% trans "Sign up" %}{% endblock %}
2019-08-11 14:22:52 +00:00
{% block content %}
2020-03-11 11:05:29 +00:00
<h2>{% trans "Sign up" %}</h2>
2019-08-11 14:22:52 +00:00
<form method="post">
{% csrf_token %}
{{ form|crispy }}
2020-02-03 18:24:23 +00:00
{{ profile_form|crispy }}
<button class="btn btn-success" type="submit">
2020-03-11 11:05:29 +00:00
{% trans "Sign up" %}
</button>
2019-08-11 14:22:52 +00:00
</form>
{% endblock %}