{% 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) }}

Linked Socials

{{ text(id="socials-discord", name="discord", value=current_user.discord) }} {{ text(id="socials-twitter", name="twitter", value=current_user.twitter) }} {{ text(id="socials-twitch", name="twitch", value=current_user.twitch) }} {{ text(id="socials-youtube", name="youtube", value=current_user.youtube) }} {{ text(id="socials-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 %}
Options Device Created Last Used
{{ session.device_type }} {{ session.created_at.strftime('%Y-%m-%d') }} {{ session.last_used|timesince }}

Danger Zone

Be careful!

Delete Account Reset Password Logout
{% endblock %}