mirror of
https://github.com/leaders-of-digital-9-task/backend.git
synced 2024-11-14 21:46:35 +03:00
13 lines
451 B
HTML
13 lines
451 B
HTML
|
{% extends "account/base.html" %}
|
||
|
|
||
|
{% load i18n %}
|
||
|
|
||
|
{% block head_title %}{% translate "Verify Your E-mail Address" %}{% endblock %}
|
||
|
|
||
|
{% block inner %}
|
||
|
<h1>{% translate "Verify Your E-mail Address" %}</h1>
|
||
|
|
||
|
<p>{% blocktranslate %}We have sent an e-mail to you for verification. Follow the link provided to finalize the signup process. Please contact us if you do not receive it within a few minutes.{% endblocktranslate %}</p>
|
||
|
|
||
|
{% endblock %}
|