This repository has been archived on 2023-02-21. You can view files and clone it, but cannot push or open issues or pull requests.
montpellier-themes/templates/registration/registration_complete.html

20 lines
502 B
HTML

{% extends "base.html" %}
{% load i18n %}
{% block bodyargs %}class="narrow-page"{% endblock %}
{% block title %}Compte citoyen{% endblock %}
{% block content_header %}
<div id="single-title">Compte citoyen</div>
{% endblock %}
{% block menu %}
{% endblock %}
{% block content %}
<h2>{% trans "Successful registration" %}</h2>
<p>{% trans "You are now registered. Activation email sent." %}</p>
<p><button type="button" onclick="location.href = '/'">{% trans "Back" %}</button></p>
{% endblock %}