{% import 'macros/flash.html' as flash with context %} {% extends "admin/index.html" %} {% block content %}

Your Profile


{% if current_user.is_authenticated() %}

Email: {{current_user.email}}

{% endif %}

Change Password


{{ form.csrf_token }}

{{ form.password(placeholder="password") }} {% if form.password.errors %} {% for error in form.password.errors %} {{ error }} {% endfor %} {% endif %}

{{ form.confirm(placeholder="confirm") }} {% if form.confirm.errors %} {% for error in form.confirm.errors %} {{ error }} {% endfor %} {% endif %}

{% endblock content %}