Files
flask-test/app/templates/home.html
2025-03-31 10:46:49 +01:00

13 lines
394 B
HTML

{% extends "base.html" %}
{% block title %}Home{% endblock %}
{% block content %}
<h1>Welcome to the Flask App</h1>
<p>This is the homepage of the Flask application.</p>
<nav>
<ul>
<li><a href="{{ url_for('home') }}">Home</a></li>
<li><a href="{{ url_for('admin') }}">Admin</a></li>
<li><a href="{{ url_for('login') }}">Login</a></li>
</ul>
</nav>
{% endblock %}