2021-10-28 13:24:34 +00:00
|
|
|
{% extends theme('base.html') %}
|
2022-12-27 23:45:34 +00:00
|
|
|
{% import 'flask.j2' as flask %}
|
2021-12-05 17:52:34 +00:00
|
|
|
{% import 'fomanticui.html' as sui %}
|
2020-08-17 15:49:49 +00:00
|
|
|
|
2022-12-27 23:45:34 +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
|
|
|
|
2022-12-27 23:45:34 +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>
|
2022-12-27 23:45:34 +00:00
|
|
|
</h2>
|
2020-08-17 15:49:49 +00:00
|
|
|
|
2022-12-27 23:45:34 +00:00
|
|
|
{{ flask.messages() }}
|
2020-10-21 08:44:46 +00:00
|
|
|
|
2022-12-27 23:45:34 +00:00
|
|
|
<form method="POST"
|
|
|
|
id="{{ form.id or form.__class__.__name__|lower }}"
|
|
|
|
action="{{ request.url }}"
|
|
|
|
role="form"
|
|
|
|
class="ui form"
|
|
|
|
>
|
2021-12-20 16:15:13 +00:00
|
|
|
|
2022-12-27 23:45:34 +00:00
|
|
|
{{ form.hidden_tag() if form.hidden_tag }}
|
2022-12-27 23:51:23 +00:00
|
|
|
{% block login_field scoped %}{{ sui.render_field(form.login, icon="user", noindicator=true, class="autofocus") }}{% endblock %}
|
2020-10-21 08:44:46 +00:00
|
|
|
|
2022-12-27 23:45:34 +00:00
|
|
|
{% if "password" in form %}
|
|
|
|
{% block password_field scoped %}{{ sui.render_field(form.password, icon="key", noindicator=true) }}{% endblock %}
|
2021-12-20 22:57:27 +00:00
|
|
|
{% endif %}
|
2022-12-27 23:45:34 +00:00
|
|
|
|
|
|
|
<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>
|
|
|
|
</form>
|
2021-07-01 07:55:40 +00:00
|
|
|
</div>
|
2022-12-27 23:45:34 +00:00
|
|
|
</div>
|
2021-12-20 22:57:27 +00:00
|
|
|
</div>
|
2020-08-17 15:49:49 +00:00
|
|
|
{% endblock %}
|