{% extends "base.html" %} {% from "macros/input.html" import text %} {% block content %}

Profile Settings

{% if current_user.picture %} Profile picture {% else %} Profile picture {% endif %}
{{ text(id="profile-username", name="username", value=current_user.username) }} {{ text(id="profile-email", name="email") }} {{ text(id="profile-password", name="password", type="password", required=True, minlength=8) }}

Sessions

Devices and games that you logged into. If you're looking to log out all website users, reset your password instead.

{% for session in sessions %} {% endfor %}
Device Created Last Used
{{ session.device_type }} {{ session.created_at.strftime('%Y-%m-%d') }} {{ session.last_used.strftime('%Y-%m-%d') }}

Danger Zone

Be careful!

Delete Account Reset Password Logout
{% endblock %}