2019-08-11 16:22:52 +02:00
|
|
|
<!-- templates/signup.html -->
|
|
|
|
{% extends 'base.html' %}
|
|
|
|
{% load crispy_forms_tags %}
|
2020-02-02 15:42:39 +01:00
|
|
|
{% load i18n %}
|
2020-03-11 12:05:29 +01:00
|
|
|
{% block title %}{% trans "Sign up" %}{% endblock %}
|
2019-08-11 16:22:52 +02:00
|
|
|
|
|
|
|
{% block content %}
|
2020-03-11 12:05:29 +01:00
|
|
|
<h2>{% trans "Sign up" %}</h2>
|
2019-08-11 16:22:52 +02:00
|
|
|
<form method="post">
|
2020-02-02 15:42:39 +01:00
|
|
|
{% csrf_token %}
|
|
|
|
{{ form|crispy }}
|
2020-02-03 19:24:23 +01:00
|
|
|
{{ profile_form|crispy }}
|
2020-02-25 22:26:43 +01:00
|
|
|
<button class="btn btn-success" type="submit">
|
2020-03-11 12:05:29 +01:00
|
|
|
{% trans "Sign up" %}
|
2020-02-02 15:42:39 +01:00
|
|
|
</button>
|
2019-08-11 16:22:52 +02:00
|
|
|
</form>
|
|
|
|
{% endblock %}
|