This repository has been archived on 2026-03-15. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
cau-praktikum/app/templates/home.html
T

18 lines
456 B
HTML

<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Home Page</title>
<link
rel="stylesheet"
href="{{ url_for('static', filename='style.css') }}"
/>
</head>
<body>
<h1>logged in</h1>
<p>hi, {{ current_user.username }}!</p>
<a href="{{ url_for('main.play') }}" class="link-button">Play Chess</a>
</body>
</html>