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.
23 lines
715 B
23 lines
715 B
{% extends 'tournaments/base.html' %}
|
|
{% block head_title %} Activation {% endblock %}
|
|
{% block first_title %} Padel Club {% endblock %}
|
|
{% block second_title %} Activation {% endblock %}
|
|
|
|
{% block content %}
|
|
{% load static %}
|
|
{% load tz %}
|
|
|
|
<div class="grid-x">
|
|
<div class="bubble">
|
|
<div class="cell medium-6 large-6 padding10">
|
|
<label class="title">Lien d'Activation Invalide</label>
|
|
<p>Le lien d'activation est invalide ou a expiré.</p>
|
|
<div>
|
|
<a href="{% url 'index' %}" class="btn styled-link">Aller à la page d'accueil</a>
|
|
</div>
|
|
<div>
|
|
<a href="mailto:support@padelclub.com" class="btn styled-link">Contacter le support</a>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{% endblock %}
|
|
|