canaille-globuzma/canaille/templates/login.html

46 lines
1.9 KiB
HTML
Raw Normal View History

{% extends theme('base.html') %}
{% import 'macro/flask.html' as flask %}
2023-03-28 18:37:16 +00:00
{% import 'macro/form.html' as fui %}
2020-08-17 15:49:49 +00:00
{% block container %}
<div class="ui container">
<div class="content">
<div class="ui clearing segment">
{% if logo_url %}
<a href="{{ url_for('account.index') }}">
<img class="ui tiny centered image" src="{{ logo_url }}" alt="{{ website_name }}">
</a>
{% else %}
<i class="massive sign in icon image ui"></i>
{% endif %}
2020-08-17 15:49:49 +00:00
<h2 class="ui center aligned header">
<div class="content">
{{ _("Sign in at %(website)s", website=website_name) }}
</div>
2022-12-28 00:06:42 +00:00
<div class="sub header">{% trans %}Manage your information and your authorizations{% endtrans %}</div>
</h2>
2020-08-17 15:49:49 +00:00
{{ flask.messages() }}
2020-10-21 08:44:46 +00:00
{% call fui.render_form(form) %}
{% block login_field scoped %}{{ fui.render_field(form.login, class="autofocus") }}{% endblock %}
2020-10-21 08:44:46 +00:00
{% if "password" in form %}
{% block password_field scoped %}{{ fui.render_field(form.password) }}{% endblock %}
2021-12-20 22:57:27 +00:00
{% endif %}
<div class="ui right aligned container">
<div class="ui stackable buttons">
{% if has_smtp and has_password_recovery %}
<a type="button" class="ui right floated button" href="{{ url_for('account.forgotten') }}">{{ _("Forgotten password") }}</a>
{% endif %}
<button type="submit" class="ui right floated primary button">{{ _("Continue") }}</button>
</div>
</div>
{% endcall %}
2021-07-01 07:55:40 +00:00
</div>
</div>
2021-12-20 22:57:27 +00:00
</div>
2020-08-17 15:49:49 +00:00
{% endblock %}