mirror of
https://github.com/spiral-project/ihatemoney.git
synced 2025-05-05 20:51:49 +02:00
12 lines
345 B
HTML
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 %}
|