authentic/src/authentic2/templates/registration/registration_form.html

19 lines
344 B
HTML

{% extends "authentic2/base-page.html" %}
{% load i18n %}
{% block title %}
{{ view.title }}
{% endblock %}
{% block content %}
{% include "authentic2/service_info_fragment.html" %}
{% for id, block in frontends.items %}
<div class="registration_frontend">
{{ block.content|safe }}
</div>
{% endfor %}
{% endblock %}