forked from j3rrywan9/temperature-sensor-recorder
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest_form.html
More file actions
26 lines (26 loc) · 962 Bytes
/
test_form.html
File metadata and controls
26 lines (26 loc) · 962 Bytes
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
<html>
<title>Temperature Sensor Recorder Test Form</title>
<h1>Temperature Sensor Recorder Test Form</h1>
<h2>Enter the temperatures and then submit the form.</h2>
<body>
<form action="beertemp.php" method="get">
<table border="0">
<tr bgcolor="#cccccc">
<td width="100">Sensor</td>
<td width="15">Temperature</td>
</tr>
<tr>
<td>Sensor 1</td>
<td align="center"><input type="number" name="sensor1" size="3"></td>
</tr>
<tr>
<td>Sensor 2</td>
<td align="center"><input type="number" name="sensor2" size="3"></td>
</tr>
<tr>
<td colspan="2" align="center"><input type="submit" value="Submit"/></td>
</tr>
</table>
</form>
</body>
</html>