canaille-globuzma/canaille/templates/firstlogin.html
2021-10-29 17:05:32 +02:00

42 lines
1.5 KiB
HTML

{% extends theme('base.html') %}
{% import 'fomanticui.j2' as sui %}
{% block content %}
<div class="loginform">
<h3 class="ui top attached header">
{% if logo_url %}
<img class="ui image" src="{{ logo_url }}">
{% endif %}
<div class="content">
{% trans %}First login{% endtrans %}
</div>
</h3>
<div class="ui attached message">
{% trans %}
It seems this is the first time you are logging here. In order to finalize your
account configuration, you need to set a password to your account. We will send
you an email containing a link that will allow you to set a password. Please click
on the blue button below to send the email.
{% endtrans %}
</div>
<div class="ui attached clearing segment">
<form method="POST"
id="{{ reset }}"
action="{{ url_for('account.firstlogin', uid=uid) }}"
role="form"
>
{{ form.hidden_tag() if form.hidden_tag }}
<div class="ui right aligned container">
<div class="ui stackable buttons">
<a type="button" class="ui right floated button" href="{{ url_for('account.login') }}">{{ _("Login page") }}</a>
<button type="submit" class="ui right floated primary button">{{ _("Send the initialization email") }}</button>
</div>
</div>
</form>
</div>
</div>
{% endblock %}