{% extends "layout.html" %} {% block content %}

Change Password

{% with messages = get_flashed_messages(with_categories=true) %} {% if messages %} {% for category, message in messages %} {% endfor %} {% endif %} {% endwith %}

Account Information

Email
{{ current_user.email }}
Account Type
{% if current_user.is_admin %} Administrator {% else %} Standard User {% endif %}
Created
{{ current_user.created_at.strftime('%Y-%m-%d %H:%M') }}
{% endblock %}