18 lines
602 B
HTML
18 lines
602 B
HTML
{% extends "base_auth.html" %}
|
|
{% block title %}Verify Email{% endblock %}
|
|
{% block left_heading %}Verify your email{% endblock %}
|
|
{% block left_subtext %}A verification link has been sent to your email{% endblock %}
|
|
|
|
{% block content %}
|
|
<h2>Verify Your Email</h2>
|
|
<p class="subtitle">Please check your inbox and click the verification link</p>
|
|
|
|
<div style="font-size:14px;color:#444;margin-top:12px;">
|
|
If you don't receive the email within a few minutes, check your spam folder.
|
|
</div>
|
|
|
|
<div class="redirect">
|
|
<a class="link" href="{% url 'myapp:login' %}">Back to Login</a>
|
|
</div>
|
|
{% endblock %}
|