mirror of
https://github.com/Southampton-RSG/breccia-mapper.git
synced 2026-03-03 19:37:06 +00:00
23 lines
792 B
HTML
Executable File
23 lines
792 B
HTML
Executable File
{% extends "account/base.html" %}
|
|
|
|
{% load i18n %}
|
|
|
|
{% block head_title %}{% trans "Verify Your Email Address" %}{% endblock %}
|
|
|
|
{% block content %}
|
|
<h1>{% trans "Verify Your Email Address" %}</h1>
|
|
|
|
{% url 'account_email' as email_url %}
|
|
|
|
<p>{% blocktrans %}This part of the site requires us to verify that
|
|
you are who you claim to be. We therefore require you to
|
|
verify ownership of your email address. {% endblocktrans %}</p>
|
|
|
|
<p>{% blocktrans %}A verification email has been sent to your email address. Follow the link provided to activate your account. Contact us
|
|
if you do not receive it within a few minutes.{% endblocktrans %}</p>
|
|
|
|
<p>{% blocktrans %}<strong>Note:</strong> you can still <a href="{{ email_url }}">change your email address</a>.{% endblocktrans %}</p>
|
|
|
|
|
|
{% endblock %}
|