haldis/app/templates/profile.html

10 lines
326 B
HTML
Raw Normal View History

2015-06-05 09:39:34 +00:00
{% extends "layout.html" -%}
{% set active_page = "profile" -%}
{% block container %}
<h1>{{ current_user.username }}</h1>
2019-10-30 22:40:36 +00:00
<h3>Themes</h3>
<p><a class="changeThemeButton" id="customTheme">enable custom themes</a></p>
2019-12-05 18:39:35 +00:00
<p><a class="changePerformance" id="highPerformance">enable high performance</a></p>
2015-06-05 09:39:34 +00:00
{% endblock %}