This commit is contained in:
2025-09-02 19:41:06 +03:00
commit d23055a0bf
17 changed files with 1608 additions and 0 deletions

27
templates/base.html Normal file
View File

@@ -0,0 +1,27 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>{% block title %}{% endblock %}</title>
<link href="css/global.css" rel="stylesheet">
{% block headers %}{% endblock %}
</head>
<body>
<div id="topnav">
<div class="topnav_button" onclick="location.href='/'">
Dashboard
</div>
<div class="topnav_button" onclick="location.href='/roster'">
Roster
</div>
<div class="topnav_button" onclick="location.href='/events'">
Events
</div>
<div class="topnav_button" onclick="location.href='/documents'">
Documents
</div>
{% block content %}{% endblock %}
</div>
</body>
</html>

11
templates/index.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 %}