ddns/templates/flask_user/emails/confirm_email_message.html

15 lines
421 B
HTML
Raw Normal View History

2014-09-30 18:11:38 +02:00
{% 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 %}