Files
qgreper/templates/base.html
2022-10-07 14:37:18 +02:00

24 lines
545 B
HTML

<!doctype html>
<head>
<title>{{ title }}</title>
</head>
<body>
<nav>
<a href="{{ url_for('index') }}">Home</a>
{% if 'user_id' in session %}
<a href="{{ url_for('user_edit') }}">{{ session.get('username', '???') }}</a>
|
<a href="{{ url_for('logout') }}">Logout</a>
{% else %}
<a href="{{ url_for('login') }}">Login</a>
{% endif %}
</nav>
<h1>{{ title }}</h1>
{% for category, msg in get_flashed_messages(True) %}
<p>{{ category}}: {{ msg }}</p>
{% endfor %}
<main>
{% block content %}{% endblock %}
</main>
</body>