{% extends "base.html" %} {% block title %}Profile Settings - BalanceBoard{% endblock %} {% block extra_css %} {% endblock %} {% block content %}

Profile Settings

Manage your account information and profile picture

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

Profile Picture

{% if user.profile_picture_url %} {{ user.username }} {% else %} {{ user.username[0]|upper }} {% endif %}

Current Avatar

Upload a new profile picture to personalize your account

PNG, JPG, or GIF. Maximum size 2MB.

Account Information

This is how other users will see you on BalanceBoard

We'll use this for account notifications and password recovery

Account Details

Account Type: {% if user.is_admin %}Administrator{% else %}User{% endif %}
Member Since: {{ user.created_at.strftime('%B %d, %Y') }}
{% if user.last_login %}
Last Login: {{ user.last_login.strftime('%B %d, %Y at %I:%M %p') }}
{% endif %}
Cancel
{% endblock %}