-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhome.html
60 lines (60 loc) · 2.11 KB
/
home.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Application Home Page</title>
<!-- Pulls in the external normalize.min.css file, which is a CSS reset file to normalize the formatting of elements across browsers -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/normalize/8.0.0/normalize.min.css">
<link rel="stylesheet" href="static/css/home.css">
<!-- Pulls in the external jquery-3.3.1.min.js file to provide the jQuery functionality you’ll use to create the single-page application interactivity -->
<script
src="http://code.jquery.com/jquery-3.3.1.min.js"
integrity="sha256-FgpCb/KJQlLNfOu91ta32o/NMZxltwRo8QtmkMRdAu8="
crossorigin="anonymous">
</script>
</head>
<body>
<div class="container">
<h1 class="banner">People Demo Application</h1>
<div class="section editor">
<label for="fname">First Name
<input id="fname" type="text" />
</label>
<br />
<label for="lname">Last Name
<input id="lname" type="text" />
</label>
<br />
<button id="create">Create</button>
<button id="update">Update</button>
<button id="delete">Delete</button>
<button id="reset">Reset</button>
</div>
<div class="people">
<table>
<caption>People</caption>
<thead>
<tr>
<th>First Name</th>
<th>Last Name</th>
<th>Update Time</th>
</tr>
</thead>
<tbody>
</tbody>
</table>
</div>
<div class="error">
</div>
</div>
<div class="info">
<p>
Visit <code class="code">api/people</code> to view all the API data.
</p>
<p>
Visit <code class="code">api/ui</code> to see what the request looks like in detail on Swagger's UI.
</p>
</div>
</body>
<script src="static/js/home.js"></script>
</html>