blob: 031d27cd470822213a3fd6aca59f2e93391f8330 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
{% extends "layout.html" %}
{% block content %}
<h2>Authentication</h2>
{% if is_admin_auth_enabled %}
<form class="form-horizontal" method="POST" accept-charset="utf-8">
{{ forms.admin(form) }}
</form>
{% else %}
<div class="alert alert-danger">{{ _("Administration tasks are currently disabled.") }}</div>
{% endif %}
{% endblock %}
|