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.
38 lines
1.2 KiB
38 lines
1.2 KiB
{% 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">Bienvenue ! Votre compte a été créé avec succès</label>
|
|
<div class="cell medium-6 large-6 padding10">
|
|
<p>Un e-mail de confirmation a été envoyé à :<br>
|
|
<strong>{{ user_email }}</strong></p>
|
|
|
|
<p>Pour finaliser votre inscription, merci de :</p>
|
|
<ol>
|
|
<li>Vérifier votre boîte de réception (et vos spams si nécessaire)</li>
|
|
<li>Cliquer sur le lien de confirmation dans l'e-mail</li>
|
|
</ol>
|
|
</div>
|
|
<div class="button-container">
|
|
<a href="{{ next_url }}" class="rounded-button">Continuer</a>
|
|
</div>
|
|
<div class="support-link">
|
|
<p>Un problème ? <a href="mailto:support@padelclub.app" class="styled-link">Contactez-nous</a></p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<style>
|
|
.button-container {
|
|
margin-bottom: 20px;
|
|
}
|
|
</style>
|
|
{% endblock %}
|
|
|