{% extends '../layout-growi/base/layout.html' %} {% block html_title %}{{ customTitle(t('Password Settings')) }}{% endblock %} {% block content_header %}
{% endblock %} {% block content_main %}
{% if not user.password %}
{{ t('Password is not set') }}
{% 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.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 layout_footer %} {% endblock %}