56 lines
		
	
	
		
			2.1 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			56 lines
		
	
	
		
			2.1 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">
 | 
						|
        <script src="/js/global.js" defer></script>
 | 
						|
        {% 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>
 | 
						|
                <button id="topnav_login" class="topnav_button" onclick="location.href='/login'">Login</button>
 | 
						|
 | 
						|
 | 
						|
                <div id="topnav_profile">
 | 
						|
                    <span>MCorange</span>
 | 
						|
                    <img src="/img/default_pfp.png" alt="Profile Picture" onclick="on_pfp_click()">
 | 
						|
                </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>
 |