1
0
Fork 0
forked from Simnation/Main
Main/resources/[qb]/qb-lapraces/html/index.html
2025-06-07 08:51:21 +02:00

35 lines
No EOL
1.7 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>QB Lapraces</title>
<script src="https://code.jquery.com/jquery-3.6.0.min.js" integrity="sha256-/xUj+3OJU5yExlq6GSYGSHk7tPXikynS7ogEvDej/m4=" crossorigin="anonymous"></script>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<div class="container">
<div class="ui">
<div class="editor">
<span id="editor-racename">Race: Test Race</span>
<span id="editor-checkpoints">Checkpoints: 1 / ?</span>
<span id="editor-keys-add"><span style="color: rgb(0, 201, 0);">7</span> - Add Checkpoint</span>
<span id="editor-keys-tiredistance"></span>
<span id="editor-keys-delete"></span>
<span id="editor-keys-cancel"><span style="color: rgb(255, 43, 43);">9</span> - Cancel Editor</span>
<span id="editor-keys-save"><span style="color: rgb(0, 201, 0);">K</span> - Save Race</span>
</div>
<div class="race">
<span id="race-racename">Race: Test Race</span>
<span id="race-checkpoints">Checkpoints: 1 / 1</span>
<span id="race-lap">Lap: 1 / 1</span>
<span id="race-time">Current Lap: </span>
<span id="race-besttime">Best Lap: </span>
<span id="race-totaltime">Total Time: </span>
</div>
</div>
</div>
</body>
<script src="./script.js"></script>
</html>