Added settings and API key stuff
Signed-off-by: Marcel Müller <neikos@neikos.email>
This commit is contained in:
parent
9d08e23352
commit
a80ad57ca9
14 changed files with 396 additions and 45 deletions
19
nixie-server/templates/settings/index.tera.html
Normal file
19
nixie-server/templates/settings/index.tera.html
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
{% extends "base.tera.html" %}
|
||||
{% import "inputs.tera.html" 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.tera.html" %}
|
||||
</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 %}
|
||||
Loading…
Add table
Add a link
Reference in a new issue