You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
607 B
24 lines
607 B
<!-- templates/registration/signup.html -->
|
|
{% extends 'tournaments/base.html' %}
|
|
{% block first_title %}{% endblock %}
|
|
{% block second_title %}{% endblock %}
|
|
|
|
{% block content %}
|
|
{% load static %}
|
|
{% load tz %}
|
|
|
|
<div class="grid-x">
|
|
<div class="cell medium-6 large-6 my-block">
|
|
<form method="post">
|
|
{% csrf_token %}
|
|
{{ form.as_p }}
|
|
<button type="submit" class="button">Créer votre compte</button>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
|
|
{% for message in messages %}
|
|
<div class="alert alert-{{ message.tags }}">{{ message }}</div>
|
|
{% endfor %}
|
|
|
|
{% endblock %}
|
|
|