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.
 
 
 
 
padelclub_backend/tournaments/templates/registration/signup.html

27 lines
738 B

<!-- templates/registration/signup.html -->
{% extends 'tournaments/base.html' %}
{% block head_title %} Création de compte {% endblock %}
{% block first_title %} Padel Club {% endblock %}
{% block second_title %} Création de compte {% endblock %}
{% block content %}
{% load static %}
{% load tz %}
<div class="grid-x">
<div class="bubble">
<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>
{% for message in messages %}
<div class="alert alert-{{ message.tags }}">{{ message }}</div>
{% endfor %}
</div>
</div>
{% endblock %}