{% extends '../layout/2column.html' %} {% block html_title %}{{ t('Password Settings') }} ยท {{ path }}{% endblock %} {% block content_head %}
{% endblock %} {% block content_main %}
{% if not user.password %}
{{ t('Please set a password') }}
{% endif %} {% set message = req.flash('successMessage') %} {% if message.length %}
{{ message }}
{% endif %} {% if req.form.errors.length > 0 %}
    {% for error in req.form.errors %}
  • {{ error }}
  • {% endfor %}
{% endif %} {% if user.email %}

{{ t('You can sign in with email and password', user.email) }}

{% endif %}
{% if user.password %} {{ t('Update Password') }} {% else %} {{ t('Set new Password') }} {% endif %} {% if user.password %}
{% endif %}

{{ t('page_register.form_help.password') }}

{% endblock content_main %} {% block content_footer %} {% endblock %} {% block footer %} {% endblock %}