16 lines
456 B
HTML
16 lines
456 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 has been confirmed. You will shortly receive an email to set your password. Then we'll be able to communicate on a deeper level ;-)
|
|
{% endblock %}
|
|
|
|
|
|
{% block content_footer %}
|
|
|
|
{% endblock %} |