9 lines
326 B
HTML
9 lines
326 B
HTML
{% extends "layout.html" -%}
|
|
{% set active_page = "profile" -%}
|
|
|
|
{% block container %}
|
|
<h1>{{ current_user.username }}</h1>
|
|
<h3>Themes</h3>
|
|
<p><a class="changeThemeButton" id="customTheme">enable custom themes</a></p>
|
|
<p><a class="changePerformance" id="highPerformance">enable high performance</a></p>
|
|
{% endblock %}
|