16 lines
455 B
HTML
16 lines
455 B
HTML
{% extends 'base.html' %}
|
|
{% from "macros.html" import render_field %}
|
|
|
|
{% block title %}Email Confirmation OK{% endblock %}
|
|
|
|
{% block content_title %}Email Confirmation OK{% endblock %}
|
|
{% block content_description %}{% endblock %}
|
|
|
|
{% block content %}
|
|
Your email cannot be confirmed. The link has expired or is invalid. Please contact your administrator to send you a new confirmation link ;-)
|
|
{% endblock %}
|
|
|
|
|
|
{% block content_footer %}
|
|
|
|
{% endblock %} |