Moved files from private to public repo for first release

This commit is contained in:
eetnaviation
2024-01-01 22:49:04 +02:00
parent 7ce960c91a
commit 2f7f0075be
7 changed files with 1724 additions and 0 deletions

13
client/index.html Normal file
View File

@ -0,0 +1,13 @@
<html>
<head>
<title>ARVUTUS</title>
</head>
<body>
<input type="button" onClick="start()" id="start" value="START"></input>
</body>
</html>
<script>
function start() {
window.location = "/choice";
}
</script>