39 lines
1.6 KiB
HTML
39 lines
1.6 KiB
HTML
{% extends "base.html" %}
|
|
{% load static %}
|
|
{% load i18n %}
|
|
{% load allauth account %}
|
|
|
|
{% block head_title %}
|
|
{% trans "Verify Email Address" %}
|
|
{% endblock head_title %}
|
|
|
|
{% block content %}
|
|
<!-- Email Verification Start -->
|
|
<section class="space-py-100">
|
|
<div class="container">
|
|
<div class="grid grid-cols-12">
|
|
<div class="col-span-12">
|
|
<div class="codex-authbox">
|
|
<div class="auth-header">
|
|
<div class="codex-brand">
|
|
<a href="{% url 'main:home' %}">
|
|
<img class="img-fluid light-logo" src="{% static 'main/assets/images/logo/logo.png' %}" alt="logo">
|
|
<img class="img-fluid dark-logo" src="{% static 'main/assets/images/logo/logo-light.png' %}" alt="logo">
|
|
</a>
|
|
</div>
|
|
<h3>{% trans "Verify Your Email Address" %}</h3>
|
|
<p>{% trans "We have sent you an email for verification. Follow the link provided to complete the sign-up process. If you do not see the verification email in your primary inbox, check your spam folder." %}</p>
|
|
</div>
|
|
<p>{% trans "Please contact us if you do not receive the verification email within a few minutes." %}</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
<!-- Email Verification End -->
|
|
{% endblock content %}
|
|
|
|
{% block extra_body %}
|
|
{{ block.super }}
|
|
{% endblock extra_body %}
|