-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgo-dome.html
38 lines (29 loc) · 1.05 KB
/
go-dome.html
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
33
34
35
36
37
<html>
<head><title>Welcome to the Stickney Observatory Dome Control</title>
</head>
<body>
Hello user. What azimuth is the telescope going to first?
<form id="some_form" action="http://domecontrol.bennington.edu:5000/next-location" method="POST" enctype="multipart/form-data">
<br>
Azimuth:
<input type="number" name="azimuth">
<input type="submit" name="go" value="Go">
</form>
<br>
<form id="some_form1" action="http://domecontrol.bennington.edu:5000/next-location" method="POST" enctype="multipart/form-data">
Do you want to go home?
<input type="submit" name="home" value="Go Home">
</form>
<br>
<form id="some_form2" action="http://domecontrol.bennington.edu:5000/next-location" method="POST" enctype="multipart/form-data">
Are you finished using the dome?
<input type="submit" name="shutdown" value="Shut Down System">
<br>
</form>
Emergency Stop
<form id="some_form4" action="http://domecontrol.bennington.edu:5000/next-location" method="POST" enctype="multipart/form-data">
<input type="submit" name="estop" value="Emergency Stop">
<br>
</form>
</body>
</html>