19 lines
521 B
Text
19 lines
521 B
Text
{% extends "base.html.tera" %}
|
|
{% import "inputs.html.tera" as inputs %}
|
|
|
|
{% block title %}
|
|
Settings - {{ current_user.username }}
|
|
{% endblock title %}
|
|
|
|
{% block content %}
|
|
<div class="flex flex-col md:flex-row grow">
|
|
<div class="basis-1/4 p-4 m-4 space-y-4">
|
|
{% include "settings/sidebar.html.tera" %}
|
|
</div>
|
|
<div class="basis-3/4 p-4">
|
|
<p>THIS IS YOUR MAIN SETTINGS WOOHOOOO</p>
|
|
|
|
<p>Your username is: <em>{{ current_user.username }}</em></p>
|
|
</div>
|
|
</div>
|
|
{% endblock content %}
|