-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlaunch.htm
32 lines (29 loc) · 1018 Bytes
/
launch.htm
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
<!DOCTYPE html>
<html>
<head>
<title>Launch Pad Control</title>
<style>
body {
text-align: center; /* Center content */
font-family: sans-serif; /* A basic font */
}
button {
font-size: 24px; /* Larger button text */
padding: 15px 30px; /* Add padding around button text */
margin-bottom: 20px; /* Space between buttons */
border: 2px solid black; /* Example border */
border-radius: 5px; /* Slightly rounded corners */
background-color: lightgray; /* Example background */
}
#launchButton { background-color: lightgreen; }
#abortButton { background-color: lightcoral; }
</style>
</head>
<body>
<h1>Launch Pad Control</h1>
<button id="connectButton">Connect</button>
<button id="launchButton" disabled>Launch</button>
<button id="abortButton" disabled>Abort</button>
<div id="status"></div>
<script src="script.js"></script> </body>
</html>