{% if not user.password %}
{% endif %}
{% if user.email %}
{{ 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 %}
{{ t('You can sign in with email and password', user.email) }}
{% endif %}