2019-08-11 14:22:52 +00:00
|
|
|
<!-- templates/signup.html -->
|
|
|
|
{% extends 'base.html' %}
|
|
|
|
{% load crispy_forms_tags %}
|
2020-02-02 14:42:39 +00:00
|
|
|
{% 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">
|
2020-02-02 14:42:39 +00:00
|
|
|
{% csrf_token %}
|
|
|
|
{{ form|crispy }}
|
2020-02-03 18:24:23 +00:00
|
|
|
{{ profile_form|crispy }}
|
2020-02-25 21:26:43 +00:00
|
|
|
<button class="btn btn-success" type="submit">
|
2020-03-11 11:05:29 +00:00
|
|
|
{% trans "Sign up" %}
|
2020-02-02 14:42:39 +00:00
|
|
|
</button>
|
2019-08-11 14:22:52 +00:00
|
|
|
</form>
|
|
|
|
{% endblock %}
|