-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtestingPage.html
37 lines (35 loc) · 1.66 KB
/
testingPage.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>TestingPage</title>
<!-- Bootstrap -->
<link href="Resources/dist/css/bootstrap.min.css" rel="stylesheet">
</head>
<body>
<span id="messageText" class="reg">key-</span><br>
<span id="messageText2" class="reg">value-</span>
<h1><div id="messageText3">Server Output goes above!</div></h1>
<script src="Resources/jquery-2.1.3.min.js"></script>
<!-- change jquery link above to local and fix bootstrap link below-->
<script src="Resources/dist/js/bootstrap.min.js"></script>
<form id="submitForm"class="reg">
Server Message<br>
<input type="text" id="keyField" title="key" class="reg"></input>
<input type="text" id="textField" title="value"class="reg"></input>
<input type="submit" id="submitButton" value="Submit"class="reg"></input>
</form>
<br><br>
<div id="readDiv">
<form id="readForm">
Key<input type="text" id="readKeyField" title="key"class="reg"></input>->
<input type="text" id="readTextField" title="value"class="reg" ></input><br>
<input type="submit" id="readButton" value="Check KeyValue"class="reg"></input>
</form>
<button id="clear"class="reg">clear</button>
</div>
<script type ="text/javascript" src="testingPage.js"></script>
</body>
</html>