haldis/app/templates/profile.html
2019-12-05 19:39:35 +01:00

10 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 %}