-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdepartments.html
31 lines (27 loc) · 1.13 KB
/
departments.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Departments</title>
<script src="https://code.jquery.com/jquery-1.10.2.js"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-ho+j7jyWK8fNQe+A12Hb8AhRq26LrZ/JpcUGGOn+Y7RsweNrtN/tE3MoK7ZeZDyx" crossorigin="anonymous"></script>
<link rel="stylesheet" href="../css/style.css">
</head>
<body>
<!-- Navigation -->
<div id="nav-placeholder"></div>
<br>
<h1 class="display-4 text-center text-primary">All Departments</h1>
<hr class="my-1 col-6 border-primary">
<form class="form-inline justify-content-center">
<input id="searchedForm" name="searchedForm" class="form-control mr-2" type="text" placeholder="Search in Departments">
<span id="searchBtn" class="btn btn-primary my-2 my-sm-0">Search</span>
</form>
<br>
<!-- Pagination, Search and table -->
<div class="table justify-content-center" id="pagination_data"></div>
<!-- Script -->
<script src="../js/pagination.js"></script>
</body>
</html>