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/index.html
T

21 lines
510 B
HTML

<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Chess</title>
<link
rel="stylesheet"
href="{{ url_for('static', filename='style.css') }}"
/>
</head>
<body>
<h1>Chess Game</h1>
<p>main page</p>
<a href="{{ url_for('auth.login') }}" class="link-button"> Login </a>
<a href="{{ url_for('auth.register') }}" class="link-button"> Register </a>
</body>
</html>