You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
641 B
27 lines
641 B
<!DOCTYPE html>
|
|
<html lang="nl">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Vragenlijst</title>
|
|
<link rel="stylesheet" href="{{ url_for('static', filename='css/styles.css') }}">
|
|
</head>
|
|
<body>
|
|
<header>
|
|
<h1>Vragenlijst App</h1>
|
|
<nav>
|
|
<a href="{{ url_for('main.index') }}">Start</a>
|
|
<a href="{{ url_for('admin.admin_dashboard') }}">Beheer</a>
|
|
</nav>
|
|
</header>
|
|
|
|
<main>
|
|
{% block content %}{% endblock %}
|
|
</main>
|
|
|
|
<footer>
|
|
<p>© 2025 Mijn App</p>
|
|
</footer>
|
|
</body>
|
|
</html>
|