This repository has been archived on 2023-02-06. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
bachelor-thesis/src/website/index.html
Severin Kaderli 87c748812a
Split code to more files
Signed-off-by: Severin Kaderli <severin@kaderli.dev>
2022-11-23 16:45:03 +01:00

27 lines
1 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Document</title>
<link href="./styles/main.css" rel="stylesheet" />
</head>
<body>
<main>
<input required minlength="1" maxlength="16" id="textInput" type="text" placeholder="Enter text..." />
<p id="message"></p>
<div class="buttons">
<button id="start-sending-button" id="start-sending-button">Start Sending</button>
<button class="hide" id="stop-sending-button">Stop Sending</button>
<button id="start-calibration-button">Start Calibration</button>
<button class="hide" id="stop-calibration-button">Stop Calibration</button>
</div>
</main>
<script src="./scripts/Constants.js"></script>
<script src="./scripts/Utility.js"></script>
<script src="./scripts/Packet.js"></script>
<script src="./scripts/Main.js"></script>
</body>
</html>