2025-12-27 16:34:31 +01:00
|
|
|
<!DOCTYPE html>
|
|
|
|
|
<html lang="de">
|
|
|
|
|
<head>
|
|
|
|
|
<meta charset="UTF-8">
|
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
|
|
|
<title>{% block title %}Bewerbungsformular{% endblock %}</title>
|
|
|
|
|
<link rel="stylesheet" href="{{ url_for('static', filename='style.css') }}">
|
|
|
|
|
</head>
|
|
|
|
|
<body>
|
|
|
|
|
<div class="container">
|
|
|
|
|
<header>
|
|
|
|
|
<h1>{% block header %}Bewerbungsformular{% endblock %}</h1>
|
|
|
|
|
</header>
|
|
|
|
|
|
2025-12-27 23:12:21 +01:00
|
|
|
<!-- Progress Navigation -->
|
|
|
|
|
{% include '_navigation.html' %}
|
|
|
|
|
|
2025-12-27 16:34:31 +01:00
|
|
|
<main>
|
|
|
|
|
{% with messages = get_flashed_messages(with_categories=true) %}
|
|
|
|
|
{% if messages %}
|
|
|
|
|
<div class="messages">
|
|
|
|
|
{% for category, message in messages %}
|
|
|
|
|
<div class="message message-{{ category }}">
|
|
|
|
|
{{ message }}
|
|
|
|
|
</div>
|
|
|
|
|
{% endfor %}
|
|
|
|
|
</div>
|
|
|
|
|
{% endif %}
|
|
|
|
|
{% endwith %}
|
|
|
|
|
|
|
|
|
|
{% block content %}{% endblock %}
|
|
|
|
|
</main>
|
|
|
|
|
|
|
|
|
|
<footer>
|
|
|
|
|
<p>© 2025 - Alle Rechte vorbehalten</p>
|
|
|
|
|
</footer>
|
|
|
|
|
</div>
|
|
|
|
|
</body>
|
|
|
|
|
</html>
|