{% extends "i_love_this_web_thing.html" %} {% from "_util.html" import css_include, js_include, render_field %} {% from "common.html" import show_topbar %} {% block title %} Account Settings - Partify {% endblock %} {% block super_body %} {{ show_topbar(user, "ADMIN_INTERFACE" in user_privs, true) }}

Account Settings

Note: Current password is only required if desiring to change your password

{{ render_field(form.name) }} {{ render_field(form.current_password) }} {{ render_field(form.new_password) }} {{ render_field(form.confirm_password) }}
{% endblock %}