21 lines
669 B
HTML
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>
|