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

24 lines
559 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 Arena</title>
<link
rel="stylesheet"
href="{{ url_for('static', filename='play.css') }}"
/>
<script
src="https://cdn.socket.io/4.8.1/socket.io.min.js"
crossorigin="anonymous"
></script>
<script
type="module"
src="{{ url_for('static', filename='js/main.js') }}"
></script>
</head>
<body>
<div id="app"></div>
</body>
</html>