15 lines
421 B
HTML
15 lines
421 B
HTML
{% extends 'flask_user/emails/base_message.html' %}
|
|
|
|
{% block message %}
|
|
|
|
<p>Thank you for registering with Flask-User.</p>
|
|
|
|
{% if user_manager.enable_confirm_email %}
|
|
<p>Visit the link below to complete your registration:</p>
|
|
|
|
<p><a href="{{ confirm_email_link }}?next=/">Confirm your email address</a>.</p>
|
|
|
|
<p>If you did not initiate this registration, you may safely ignore this email.</p>
|
|
{% endif %}
|
|
|
|
{% endblock %} |