Add registration frontends on the registration page (fixes #10710).

This commit is contained in:
Mikaël Ates 2016-04-19 18:22:27 +02:00
parent 37c672edfa
commit 0ac9222ef8
1 changed files with 11 additions and 6 deletions

View File

@ -5,13 +5,18 @@
{% block content %}
<h2 class="single-title">Compte citoyen</h2>
<div id="welcome">
<h3>Création de votre compte</h3>
</div>
<div class="right">
{% include 'authentic2/form.html' with form=form %}
</div>
<div id="welcome">
<h3>Création de votre compte</h3>
</div>
<div class="right">
{% include 'authentic2/form.html' with form=form %}
{% for registration_frontend in registration_frontends %}
{{ registration_frontend|safe }}
{% endfor %}
</div>
<br class="clear"/>
{% endblock %}