24 lines
649 B
HTML
24 lines
649 B
HTML
<!doctype html>
|
|
<html lang="de">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<title>{{ title if title else "TK Wiki Newsletter Admin" }}</title>
|
|
<link rel="stylesheet" href="/static/css/main.css">
|
|
</head>
|
|
<body>
|
|
<header class="topbar">
|
|
<h1>TK Wiki Newsletter Admin</h1>
|
|
{% if user %}
|
|
<form method="post" action="/logout">
|
|
<input type="hidden" name="csrf_token" value="{{ csrf_token }}">
|
|
<button type="submit">Logout</button>
|
|
</form>
|
|
{% endif %}
|
|
</header>
|
|
<main class="container">
|
|
{% block content %}{% endblock %}
|
|
</main>
|
|
</body>
|
|
</html>
|