22 lines
711 B
HTML
Executable file
22 lines
711 B
HTML
Executable file
{% extends "sidebar.html" %}
|
|
{% load i18n %}
|
|
|
|
{% comment %}
|
|
**registration/registration_complete.html**
|
|
|
|
Used after successful completion of the registration form. This
|
|
template has no context variables of its own, and should simply inform
|
|
the user that an email containing account-activation information has
|
|
been sent.
|
|
{% endcomment %}
|
|
|
|
{% block content %}
|
|
{% trans "Activation email sent" as header_text %}
|
|
{% trans "Please check your email to complete the registration process." as content %}
|
|
|
|
<main class="main" data-render-sidebar=true>
|
|
<div class="main__container">
|
|
{% include "components/card/card.html" with header_text=header_text content=content %}
|
|
</div>
|
|
</main>
|
|
{% endblock %}
|