forked from IMQS/onboard-javascript
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
33 lines (31 loc) · 900 Bytes
/
index.html
File metadata and controls
33 lines (31 loc) · 900 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
27
28
29
30
31
32
33
<!DOCTYPE html>
<html>
<title>ONBoardingProject</title>
<head>
<script
type="text/javascript"
charset="utf-8"
src="third_party/jquery-2.0.3.min.js"
></script>
<script type="text/javascript" src="app.js"></script>
<link rel="stylesheet" type="text/css" href="app.css" />
</head>
<body>
<div style="height: 50px">
<button id="nextPage" onclick="NextPage()">NEXT PAGE</button>
<button id="previousPage" onclick="PreviousPage()">PREVIOUS PAGE</button>
<div class="searchButtons">
<label>SEARCH:</label>
<input
type="text"
id="userInput"
placeholder="Enter a record number here"
onkeypress="return restrictAlphabets(event)"
/>
<button type="button" id="submitButton" onclick="SearchBar()">
SUBMIT
</button>
</div>
</div>
</body>
</html>