EP_inspection_tool_proto/home/jimmy/eptest/templates/layout.html
2026-03-05 12:53:58 +01:00

21 lines
669 B
HTML

<!doctype html>
<title>{% block title %}Inspection App{% endblock %}</title>
<link rel="stylesheet" href="/static/style.css">
<nav>
<a href="{{ url_for('main.index') }}">Home</a>
{% if current_user.is_authenticated %}
<a href="{{ url_for('auth.logout') }}">Logout</a>
{% else %}
<a href="{{ url_for('auth.login') }}">Login</a>
{% endif %}
</nav>
<div class="container">
{% with messages = get_flashed_messages(with_categories=true) %}
{% if messages %}
{% for category, msg in messages %}
<div class="alert {{ category }}">{{ msg }}</div>
{% endfor %}
{% endif %}
{% endwith %}
{% block content %}{% endblock %}
</div>