th_htmx/app/templates/index.html
2024-01-19 19:46:42 +01:00

16 lines
320 B
HTML

<!DOCTYPE html>
<html>
<head>
<title>Flask App</title>
</head>
<body>
<h1>Welcome to the Flask App</h1>
<nav>
<ul>
<li><a href="{{ url_for('auth.login') }}">Login</a></li>
<li><a href="{{ url_for('auth.register') }}">Register</a></li>
</ul>
</nav>
</body>
</html>