contentdb/app/templates/users/change_set_password.html

49 lines
1.3 KiB
HTML
Raw Permalink Normal View History

2018-05-29 19:07:23 +02:00
{% extends "base.html" %}
{% block title %}
Set Password
{% endblock %}
{% block content %}
{% if optional %}
2018-12-22 14:14:08 +01:00
<div class="alert alert-primary">
2022-01-08 00:27:00 +01:00
{{ _("It is recommended that you set a password for your account.") }}
2022-01-08 00:27:00 +01:00
<a class="alert_right button" href="{{ url_for('homepage.home') }}">
{{ _("Skip") }}
</a>
</div>
{% endif %}
2022-01-08 00:27:00 +01:00
<h1>{{ _("Set Password") }}</h1>
2018-05-29 19:07:23 +02:00
{% from "macros/forms.html" import render_field, render_submit_field %}
<form action="" method="POST" class="form" role="form">
{{ form.hidden_tag() }}
2018-05-29 19:07:23 +02:00
2020-12-05 00:07:19 +01:00
{% if form.email and not current_user.email %}
{{ render_field(form.email, tabindex=220,
hint=_("Your email is needed to recover your account if you forget your password and to send (configurable) notifications. ") +
_("Your email will never be shared with a third-party.")) }}
{% endif %}
2018-05-29 19:07:23 +02:00
2020-12-05 00:07:19 +01:00
{% if form.old_password %}
{{ render_field(form.old_password, tabindex=230) }}
{% endif %}
2022-01-08 00:27:00 +01:00
{{ render_field(form.password, tabindex=230, hint=_("Must be at least 8 characters long.")) }}
{{ render_field(form.password2, tabindex=240) }}
2018-05-29 19:07:23 +02:00
<p>
2022-01-08 00:27:00 +01:00
{{ _("Password suggestion") }}
(<a href="https://xkcd.com/936/">{{ _("Why?") }}</a>):
<code>{{ suggested_password }}</code>
</p>
{{ render_submit_field(form.submit, tabindex=280) }}
2018-05-29 19:07:23 +02:00
</form>
{% endblock %}