39 lines
1.6 KiB
HTML
39 lines
1.6 KiB
HTML
{% extends "base.html" %}
|
|
{% load i18n static%}
|
|
{% load allauth %}
|
|
{% block head_title %}
|
|
{% trans "Verify Your Email Address" %}
|
|
{% endblock head_title %}
|
|
{% block content %}
|
|
<div class="row">
|
|
<div class="row flex-center min-vh-50 py-5">
|
|
<div class="col-sm-10 col-md-8 col-lg-5 col-xxl-4">
|
|
<a class="d-flex flex-center text-decoration-none mb-4" href="{% url 'home' %}">
|
|
<div class="d-flex align-items-center fw-bolder fs-3 d-inline-block">
|
|
<img class="d-dark-none" src="{% static 'images/logos/logo-d.png' %}" alt="{% trans 'home' %}" width="58" />
|
|
<img class="d-light-none" src="{% static 'images/logos/logo.png' %}" alt="{% trans 'home' %}" width="58" />
|
|
</div>
|
|
</a>
|
|
<h3>
|
|
{% trans "Verify Your Email Address" %}
|
|
</h3>
|
|
|
|
{% url 'account_email' as email_url %}
|
|
<p>
|
|
{% blocktrans %}This part of the site requires us to verify that
|
|
you are who you claim to be. For this purpose, we require that you
|
|
verify ownership of your email address. {% endblocktrans %}
|
|
</p>
|
|
<p>
|
|
{% blocktrans %}We have sent an email to you for
|
|
verification. Please click on the link inside that email. If you do not see the verification email in your main inbox, check your spam folder. Otherwise
|
|
contact us if you do not receive it within a few minutes.{% endblocktrans %}
|
|
</p>
|
|
<p>
|
|
{% blocktrans %}<strong>Note:</strong> you can still <a href="{{ email_url }}">change your email address</a>.{% endblocktrans %}
|
|
</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{% endblock content %}
|