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.
22 lines
665 B
22 lines
665 B
{% 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">
|
|
<label class="title">Votre compte a été créé</label>
|
|
<div class="cell medium-6 large-6 my-block">
|
|
Veuillez vérifier votre e-mail pour confirmer votre compte.
|
|
</div>
|
|
<div class="topmargin20">
|
|
<a href="{{ next_url }}" class="rounded-button">Continuer</a>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{% endblock %}
|
|
|