-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathitems.html
More file actions
40 lines (38 loc) · 1.17 KB
/
Copy pathitems.html
File metadata and controls
40 lines (38 loc) · 1.17 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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="style.css">
<!-- Bootstrap core CSS -->
<link href="./css/bootstrap.min.css" rel="stylesheet">
<script src="jquery.js"></script>
<script src="main.js"></script>
</head>
<body class="text-center" onload="loadProc()">
<div class="form-signin">
<input type="email" id="inputSearch" class="form-control" placeholder="" required autofocus>
<br>
<div class="container">
<div class="row">
<div class="col text-center">
<button class="btn btn-primary search-submit" onclick="querySearch()">Search</button>
</div>
</div>
</div>
<div class="form-signin">
<table id="example" class="table table-striped" style="width:100%">
<thead>
<tr>
<th>ID</th>
<th>Name</th>
<th>Description</th>
<th>Professors</th>
<th>Contents</th>
<th>Objectives</th>
</tr>
</thead>
<tbody id="results">
</tbody>
</table>
</div>
</body>
</html>