{% extends "base.html" %} {% block title %} Verify Email {% endblock title %} {% block content %}

Verify Your Email

1
2
3
4
5

We'll send a verification link to your email address. This helps us ensure you have access to the email you're registering with.

{% csrf_token %}
{{ form.email }}
{% if form.email.errors %}

{{ form.email.errors.0 }}

{% endif %}

By continuing, you agree that we store your email address and IP address for processing your registration. {% if legal_links %} You also confirm that you have read and agree to our {% for link in legal_links %} {{ link.title }} {% if not forloop.last %},{% endif %} {% endfor %} {% endif %}

Your registration data will be automatically removed after {{ retention_started }} days if not verified, and {{ retention_completed }} days after completion or denial.

{% endblock content %}