canaille-globuzma/canaille/core/templates/forgotten-password.html

49 lines
2 KiB
HTML
Raw Normal View History

{% extends theme('base.html') %}
2023-03-28 18:37:16 +00:00
{% import 'macro/form.html' as fui %}
2020-10-22 15:37:01 +00:00
{%- block title -%}
{%- trans -%}Forgotten password{%- endtrans -%}
{%- endblock -%}
2023-03-10 00:02:36 +00:00
2020-10-22 15:37:01 +00:00
{% block content %}
2021-12-20 22:57:27 +00:00
<div class="loginform">
<h3 class="ui top attached header">
{% if logo_url %}
<img class="ui image" src="{{ logo_url }}">
{% endif %}
<div class="content">
{% trans %}Forgotten password{% endtrans %}
</div>
</h3>
2020-10-31 17:22:24 +00:00
2021-12-20 22:57:27 +00:00
<div class="ui attached message">
{% trans %}
After this form is sent, if the email address or the login you provided
exists, you will receive an email containing a link that will allow you
to reset your password.
{% endtrans %}
</div>
<div class="ui attached clearing segment">
{% call fui.render_form(form) %}
{{ fui.render_field(form.login, icon="user") }}
2020-10-22 15:37:01 +00:00
2021-12-20 22:57:27 +00:00
<div class="ui right aligned container">
<div class="ui stackable buttons">
2023-08-15 14:17:19 +00:00
{% if has_registration %}
<a type="button" class="ui right floated button" href="{{ url_for('core.account.join') }}">{{ _("Create an account") }}</a>
{% endif %}
<a type="button" class="ui right floated button" href="{{ url_for('core.auth.login') }}">{{ _("Login page") }}</a>
2021-12-20 22:57:27 +00:00
<button type="submit" class="ui right floated {% if request.method != "POST" or form.errors %}primary {% endif %}button">
{% if request.method == "POST" %}
{{ _("Send again") }}
{% else %}
{{ _("Send") }}
{% endif %}
</button>
</div>
2021-07-01 07:55:40 +00:00
</div>
{% endcall %}
2021-12-20 22:57:27 +00:00
</div>
2020-10-22 15:37:01 +00:00
</div>
{% endblock %}