38 lines
872 B
HTML
38 lines
872 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>Flask Template App</title>
|
|
<link rel="stylesheet" href="{{ url_for('static', filename='style.css') }}">
|
|
</head>
|
|
<body>
|
|
|
|
<header>
|
|
{% if current_user.is_authenticated %}
|
|
Hello {{ current_user.username }} |
|
|
<a href="{{ url_for('auth.logout') }}">Logout</a>
|
|
{% else %}
|
|
<a href="{{ url_for('auth.login') }}">Login</a> |
|
|
<a href="{{ url_for('auth.register') }}">Register</a>
|
|
{% endif %}
|
|
</header>
|
|
|
|
<!-- FLASH MESSAGES -->
|
|
{% with messages = get_flashed_messages(with_categories=true) %}
|
|
{% if messages %}
|
|
{% for category, message in messages %}
|
|
<div class="flash {{ category }}">
|
|
{{ message }}
|
|
</div>
|
|
{% endfor %}
|
|
{% endif %}
|
|
{% endwith %}
|
|
|
|
<hr>
|
|
|
|
<!-- MAIN CONTENT -->
|
|
{% block content %}{% endblock %}
|
|
|
|
</body>
|
|
</html>
|