-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
85 lines (79 loc) · 2.62 KB
/
index.html
File metadata and controls
85 lines (79 loc) · 2.62 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>IWT CW - Roland Crompton</title>
<script type="text/javascript" src="./jquery-3.3.1.min.js"></script>
<script type="text/javascript" src="./iwt-cw.js"></script>
<style type="text/css">
#resultTable {text-align: center;}
</style>
</head>
<body>
<!-- Form for setting the parameters of the serach -->
<form id="searchForm" method="dialog" autocomplete="off">
<table>
<tr>
<td>File</td>
<td>Tournament</td>
</tr>
<tr>
<td>
<select name="file" id="file">
<option value="mens">Men's</option>
<option value="womens">Women's</option>
</select>
</td>
<td>
<select name="tournament" id="tournament">
<option value="Any">Any</option>
<option value="Australian Open">Australian Open</option>
<option value="French Open">French Open</option>
<option value="U.S. Open">U.S. Open</option>
<option value="Wimbledon">Wimbledon</option>
</select>
</td>
</tr>
<tr>
<td>Year</td>
<td>Year Operator</td>
</tr>
<tr>
<td>
<input type="text" name="year" id="year">
</td>
<td>
<select name="year-op" id="year-op">
<option value="=">equals</option>
<option value=">">greater than</option>
<option value="<"> less than</option>
</select>
</td>
</tr>
<tr>
<td>Winner</td>
</tr>
<tr>
<td>
<input type="text" name="winner" id="winner">
</td>
</tr>
<tr>
<td>Runner Up</td>
</tr>
<tr>
<td>
<input type="text" name="runner-up" id="runner-up">
</td>
</tr>
</table>
<p>
<button id="send-query">Search</button>
<button id="clear-input">Clear form</button>
<button id="clear-output">Clear results</button>
</p>
</form>
<!-- Place where the output of the search is displayed -->
<div id="output"></div>
</body>
</html>