-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsearch.html
112 lines (102 loc) · 2.71 KB
/
search.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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>ANITA-4 Calibration Run Log</title>
<link rel="stylesheet" type="text/css" href="logStyle.css">
</head>
<div id="header_container">
<div id="header">
<header>
<h1>ANITA-4 Calibration Run Log</h1>
<form action="search.php" method="post">
<p>Enter search information (leave all fields blank to select all).
<!-- Fancy spam reducing email encoding -->
Questions or comments? <a href="mailto:%62.%73%74%72%75%74%74.%31%32%40%75%63%6C.%61%63.%75%6B">Email me</a>.
</p>
<table cellpadding=0 cellspacing=0 border=0 width="600" align center>
<tr>
<td rowspan="3">
<table cellpadding=0 cellspacing=0 border=0 width="200" align left>
<tr>
<td>First run</td>
<td><input name =firstRun size=10 maxlength=10></td>
</tr>
<tr>
<td>Last run</td>
<td><input name =lastRun size=10 maxlength=10></td>
</tr>
</table>
</td>
<td rowspan="3">
<table cellpadding=0 cellspacing=0 border=0 width="200" align left>
<tr>
<td>Run Description</td>
</tr>
<tr>
<td><input name =runDesc size=22></td>
</tr>
</table>
</td>
<td rowspan="3">
<table cellpadding=0 cellspacing=0 border=0 width="200" align left>
<tr>
<td>Shifter Name</td>
</tr>
<tr>
<td><input name =theShifter size=22></td>
</tr>
</table>
</td>
<td rowspan="3">
<table cellpadding=0 cellspacing=0 border=0 width="200" align left>
<tr>
<td>Comments</td>
</tr>
<tr>
<td><input name =comments size=22></td>
</tr>
</table>
</td>
<td rowspan="3">
<table cellpadding=0 cellspacing=0 border=0 width="200" allign left>
<tr>
<td>Location</td>
</tr>
<tr>
<td>
<select name="location">
<option value="All">All</option>
<option value="Antarctica">Antarctica</option>
<option value="Palestine">Palestine/Hawaii</option>
</select>
</td>
</tr>
</table>
</td>
<td rowspan="3">
<table cellpadding=0 cellspacing=0 border=0 width="200" allign left>
<tr>
<td>Order</td>
</tr>
<tr>
<td>
<select name="order">
<option value="descending">Descending</option>
<option value="ascending">Ascending</option>
</select>
</td>
</tr>
</table>
</td>
</table>
<br/>
<input type="submit" value="Search">
</form>
</header>
</div>
</div>
<body>
<p>Enter search terms above to generate results here</p>
</body>
</html>