persmgr/templates/base.html

53 lines
2.0 KiB
HTML

<!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 id="topnav_buttons">
<button class="topnav_button" onclick="location.href='/'">
Dashboard
</button>
<button class="topnav_button" onclick="location.href='/roster'">
Roster
</button>
<button class="topnav_button" onclick="location.href='/events'">
Events
</button>
<button class="topnav_button" onclick="location.href='/documents'">
Documents
</button>
</div>
<div>
<div id="topnav_profile">
<span>MCorange</span>
<img src="/img/default_pfp.png" alt="Profile Picture">
</div>
<div id="topnav_profile_wrapper">
<div id="topnav_profile_dropdown">
<button class="topnav_profile_button">
Profile
</button>
<button class="topnav_profile_button">
Administration
</button>
<button class="topnav_profile_button">
Preferences
</button>
<button class="topnav_profile_button">
Log out
</button>
</div>
</div>
</div>
</div>
{% block content %}{% endblock %}
</body>
</html>