-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathHistoryRequest.html
33 lines (32 loc) · 1.01 KB
/
HistoryRequest.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8"/>
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta content="width=device-width, initial-scale=1" name="viewport"/>
<title>Wodify History Request</title>
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
</head>
<body>
<form action="#" name="requestForm" method="post" >
<table>
<tr>
<td>Number of Days: </td>
<td><label for="numDays"></label><input type="text" id="numDays" name="numDays"/></td>
</tr>
<tr>
<td>Number of Days: </td>
<td><label for="apiKey"></label><input type="text" id="apiKey" name="apiKey"/></td>
</tr>
<tr>
<td>
<button onclick="loadWods()" type="button">Submit</button>
</td>
</tr>
</table>
<br />
<div id="results" class="results"></div>
</form>
</body>
<script src="HistoryRequest.js"></script>
</html>