30 lines
1.3 KiB
HTML
30 lines
1.3 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>
|
|
|
|
|
|
<p>
|
|
{% blocktrans %}We have sent an email to you for verification. Follow the link provided to finalize the signup process. If you do not see the verification email in your main inbox, check your spam folder. Please contact us if you do not receive the verification email within a few minutes.{% endblocktrans %}
|
|
</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{% endblock content %}
|