{% extends 'layouts/app.html' %} {% import 'macros/form.html' as f with context %} {% block title %}Update your sign in information{% endblock %} {% block body %}
{% call f.form_tag('user.update_credentials') %}

Update your sign in information

Supply your current password to make any changes.

{% call f.form_group(form.current_password, css_class='mb-4', autofocus='autofocus') %} {% endcall %} {% call f.form_group(form.email) %}{% endcall %} {% call f.form_group(form.password, placeholder='New password (optional)') %} {% endcall %} {% endcall %}
{% endblock %}