14 lines
195 B
Plaintext
14 lines
195 B
Plaintext
|
{% extends 'frontend/base.html.j2' %}
|
||
|
|
||
|
{% block title %}{{ gettext('Login') }}{% endblock %}
|
||
|
|
||
|
{% block content %}
|
||
|
|
||
|
{% for form in forms %}
|
||
|
{{ render_form(form) }}
|
||
|
{% endfor %}
|
||
|
|
||
|
|
||
|
{% endblock %}
|
||
|
|