{% import "Webmaster/macros/forms.html" as f with context %} {% import "Webmaster/macros/bootstrap.html" as bs with context %}

{{ login_title | default('My Account Settings')}}

{% call bs.collapsible_accordion() %} {% call bs.collapsible('You') %}

{{ current_user.name }}

{% endcall %} {% call bs.collapsible('Basic Info', collapse=true) %}
{{- f.csrf_field() -}}
{% endcall %} {% call bs.collapsible('Change Profile Photo', collapse=true) %}
{{- f.csrf_field() -}}
{% endcall %} {% call bs.collapsible('Change Login', collapse=true) %}
{{- f.csrf_field() -}}
{% endcall %} {% call bs.collapsible('Change Password', collapse=true) %}
{{- f.csrf_field() -}}
{% endcall %} {% endcall %}