{{ moduleHeader('user', 'Email address manager'|trans, '', true) }}

<p class="alert alert-info">
    {% trans with { '%email%': currentUser.email } %}Notice: Please enter your new e-mail address, the same address again for verification, and then click save. The site uses this address to send you mail (when you request a new password, for instance). Your currently-recorded e-mail address is %email%.{% endtrans %}
    {% trans %}You will receive an e-mail to your new e-mail address to confirm the change.{% endtrans %}
</p>

<fieldset>
    {{ form_start(form) }}
    {{ form_errors(form) }}
    {{ form_row(form.email) }}
    {{ form_end(form) }}
</fieldset>
