36 lines
1 KiB
HTML
36 lines
1 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
|
|
<head>
|
|
<meta charset='utf-8'>
|
|
<meta http-equiv='X-UA-Compatible' content='IE=edge'>
|
|
<title>Tickets</title>
|
|
<meta name='viewport' content='width=device-width, initial-scale=1'>
|
|
<link rel="stylesheet" href="/static/css/spectre.min.css">
|
|
<link rel="stylesheet" href="/static/css/spectre-exp.min.css">
|
|
<link rel="stylesheet" href="/static/css/spectre-icons.min.css">
|
|
<style>
|
|
body {
|
|
transition: background 0.5s, color 0.5s;
|
|
}
|
|
</style>
|
|
|
|
</head>
|
|
|
|
<body>
|
|
<div class="container">
|
|
<header class="navbar">
|
|
<section class="navbar-section">
|
|
<a href="/" class="navbar-brand mr-2">Tickets</a>
|
|
<a href="/password" class="btn btn-link">Verander Wachtwoord</a>
|
|
<a href="/add_user" class="btn btn-link">Voeg nieuwe gebruiker toe</a>
|
|
<a href="/logout" class="btn btn-link">Logout</a>
|
|
</section>
|
|
</header>
|
|
{% block content %}
|
|
{% endblock %}
|
|
</div>
|
|
|
|
</body>
|
|
|
|
</html> |