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_form.html

28 lines
562 B
HTML

{% extends "authentic2/base-page.html" %}
{% load i18n %}
{% block extra-body-class %}narrow-page{% endblock %}
{% block content %}
<h2 class="single-title">Compte citoyen</h2>
<div id="welcome">
<h3>Création de votre compte</h3>
</div>
<div class="right">
<div id="frontend-registration-email">
{% include 'authentic2/form.html' with form=form %}
</div>
{% if frontends.fc %}
<div class="textbreak"><span>OU</span></div>
<div id="frontend-registration-fc">
{{ frontends.fc.content|safe }}
</div>
{% endif %}
</div>
<br class="clear"/>
{% endblock %}