{% extends '../layout/2column.html' %} {% block html_title %}パスワードの設定 · {{ path }}{% endblock %} {% block content_head %} {% endblock %} {% block content_main %}
{% if not user.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 %}

{{ user.email }} と設定されたパスワードの組み合わせでログイン可能になります。

{% endif %}
{% if user.password %} パスワードを更新 {% else %} パスワードを新規に設定 {% endif %} {% if user.password %}
{% endif %}

パスワードには、6文字以上の半角英数字または記号等を設定してください。

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