This commit is contained in:
2025-09-02 22:25:30 +03:00
parent d23055a0bf
commit f59e1eeebd
9 changed files with 92 additions and 17 deletions

View File

@@ -9,19 +9,19 @@
</head>
<body>
<div id="topnav">
<div class="topnav_button" onclick="location.href='/'">
<button class="topnav_button" onclick="location.href='/'">
Dashboard
</div>
<div class="topnav_button" onclick="location.href='/roster'">
</button>
<button class="topnav_button" onclick="location.href='/roster'">
Roster
</div>
<div class="topnav_button" onclick="location.href='/events'">
</button>
<button class="topnav_button" onclick="location.href='/events'">
Events
</div>
<div class="topnav_button" onclick="location.href='/documents'">
</button>
<button class="topnav_button" onclick="location.href='/documents'">
Documents
</div>
{% block content %}{% endblock %}
</button>
</div>
{% block content %}{% endblock %}
</body>
</html>

11
templates/documents.html Normal file
View File

@@ -0,0 +1,11 @@
{% extends "base.html" %}
{% block title %}Dashboard{% endblock %}
{% block headers %}
{% endblock %}
{% block content %}
<h1>Hello!!!!!!!</h1>
{% endblock %}

11
templates/events.html Normal file
View File

@@ -0,0 +1,11 @@
{% extends "base.html" %}
{% block title %}Dashboard{% endblock %}
{% block headers %}
{% endblock %}
{% block content %}
<h1>Hello!!!!!!!</h1>
{% endblock %}

11
templates/roster.html Normal file
View File

@@ -0,0 +1,11 @@
{% extends "base.html" %}
{% block title %}Dashboard{% endblock %}
{% block headers %}
{% endblock %}
{% block content %}
<h1>Hello!!!!!!!</h1>
{% endblock %}