ihatemoney/budget/templates/admin.html
0livd b2ca059910 Revert to an empty default ADMIN_PASSWORD
When ADMIN_PASSWORD is left empty, all
administrative tasks are not available
2017-07-03 23:54:30 +02:00

12 lines
345 B
HTML

{% 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 not activated.") }}</div>
{% endif %}
{% endblock %}