Merged server and client code into single repo

This commit is contained in:
Blboun3
2024-01-16 09:56:01 +01:00
parent 6884c6cee1
commit 2c96daefbc
13 changed files with 868 additions and 0 deletions

24
client/main/index.html Normal file
View File

@ -0,0 +1,24 @@
<!DOCTYPE html>
<html lang="cs">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.7.1/jquery.min.js" integrity="sha512-v2CJ7UaYy4JwqLDIrZUI/4hqeoQieOmAZNXBeQyjo21dadnwR+8ZaIJVT8EE2iyI61OV8e6M8PP2/4hpQINQ/g==" crossorigin="anonymous" referrerpolicy="no-referrer"></script>
<title>Infinitum</title>
</head>
<body>
<div class="cosiRandomCentered">
<div class="chatHier">
</div>
<div class="inputHier">
<textarea id="textInput" autofocus name="textInput" rows="2" wrap="soft" >
</textarea>
<button type="button">Odeslat!</button>
</div>
</div>
<script src="script.js"></script>
</body>
</html>