{% extends "base.html" %} {% block title %} Set Password {% endblock %} {% block content %} {% if optional %}
It is recommended that you set a password for your account. Skip
{% endif %}

Set Password

{% from "macros/forms.html" import render_field, render_submit_field %}
{{ form.hidden_tag() }} {% if not current_user.email %} {{ render_field(form.email, tabindex=230) }}

Your email is needed to recover your account if you forget your password, and to optionally send notifications. Your email will never be shared to a third-party.

{% endif %} {{ render_field(form.password, tabindex=230) }} {{ render_field(form.password2, tabindex=240) }} {{ render_submit_field(form.submit, tabindex=280) }}
{% endblock %}