27 lines
1.1 KiB
HTML
27 lines
1.1 KiB
HTML
{% extends 'base.html' %}
|
|
{% load i18n %}
|
|
{% load allauth %}
|
|
|
|
{% block head_title %}{% trans "Verify Your Email Address" %}{% endblock head_title %}
|
|
|
|
{% block content %}
|
|
<div class="container mx-auto max-w-md mt-6">
|
|
<h1 class="text-3xl font-bold text-center mb-6">{% trans "Verify Your Email Address" %}</h1>
|
|
{% url 'account_email' as email_url %}
|
|
<p class="text-gray-700 mb-4">
|
|
{% 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 class="text-gray-700 mb-4">
|
|
{% 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 class="text-gray-700">
|
|
{% blocktrans %}
|
|
<strong>Note:</strong> you can still <a class="text-primary underline" href="{{ email_url }}">change your email address</a>.
|
|
{% endblocktrans %}
|
|
</p>
|
|
</div>
|
|
{% endblock content %}
|