traintastic/server/www/throttle.html
2025-01-10 00:26:46 +01:00

37 Zeilen
969 B
HTML

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<title>Throttle | Traintastic</title>
<link rel="stylesheet" href="/css/normalize.css">
<link rel="stylesheet" href="/css/throttle.css">
</head>
<body onload="tm.init()">
<header>
<div id="open_settings" class="right">&#8942;</div>
<h1>Traintastic</h1>
</header>
<div id="body">
<div id="settings">
<div>
<label for="throttle_name">Name:</label>
<input type="text" id="throttle_name">
</div>
<div>
<label for="stop_train_on_release">Stop train on release:</label>
<input type="checkbox" id="stop_train_on_release" checked="checked">
</div>
<div>
<button id="close_settings">Close</button>
</div>
</div>
<div id="throttles" class="flex-row"></div>
</div>
<script src="/js/throttle.js"></script>
</body>
</html>