-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcategories.html
191 lines (186 loc) · 6.57 KB
/
categories.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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, shrink-to-fit=no"
/>
<script src="script.min.js"></script>
<link rel="stylesheet" href="style.min.css" />
<link rel="stylesheet" href="resources/css/style.css" />
<link rel="stylesheet" href="vendors/font-aweome/css/all.css" />
<title>Admin UI</title>
</head>
<body>
<!-- NAVIGATION-->
<nav class="navbar navbar-expand-sm navbar-dark bg-dark p-0">
<div class="container">
<a href="index.html" class="navbar-brand">Infant Immunization</a>
<button
class="navbar-toggler"
data-toggle="collapse"
data-target="#navbarNav"
></button>
<div class="collapse navbar-collapse" id="navbarNav">
<ul class="navbar-nav">
<li class="nav-item px-2">
<a href="index.html" class="nav-link active">Dashboard</a>
</li>
<li class="nav-item px-2">
<a href="post.html" class="nav-link">Post</a>
</li>
<li class="nav-item px-2">
<a href="categories.html" class="nav-link">Categories</a>
</li>
<li class="nav-item px-2">
<a href="users.html" class="nav-link">Users</a>
</li>
</ul>
<ul class="navbar-nav ml-auto">
<li class="nav-item dropdown mr-3">
<a
href="#"
class="nav-link dropdown-toggle"
data-toggle="dropdown"
><i class="fa fa-user"> Welcome Admin</i></a
>
<div class="dropdown-menu">
<a href="profile.html" class="dropdown-item">
<i class="fa fa-user-circle"> Profile</i>
</a>
<a href="settings.html" class="dropdown-item">
<i class="fa fa-gear"> Settings</i>
</a>
</div>
</li>
<li class="nav-item">
<a href="login.html" class="nav-link">
<i class="fa fa-user-times"> Logout</i>
</a>
</li>
</ul>
</div>
</div>
</nav>
<!--HEADER -->
<header id="main-header" class="py-2 bg-success text-white">
<div class="container">
<div class="row">
<div class="col-md-6">
<h1><i class="fa fa-folder"> Categories</i></h1>
</div>
</div>
</div>
</header>
<!--ACTIONS BUTTONS-->
<section id="action" class="py-4 mb-4 bg-light">
<div class="container">
<div class="row">
<div class="col-md-6 ml-auto">
<div class="input-group">
<input type="text" class="form-control" placeholder="search" />
<span class="input-group-btn">
<button class="btn btn-success">Search</button>
</span>
</div>
</div>
</div>
</div>
</section>
<section id="posts">
<div class="container">
<div class="row">
<div class="col">
<div class="card">
<div class="card-header">
<h4>Latest Category</h4>
</div>
<table class="table table-striped">
<thead class="thead-inverse">
<tr>
<th>Categories</th>
<th>date Posted</th>
</tr>
</thead>
<tbody>
<tr>
<td>Vaccines given at birth</td>
<td>June 21, 2023</td>
</tr>
<tr>
<td>Vaccines given for two months babies</td>
<td>June 24, 2023</td>
</tr>
<tr>
<td>Vaccines given for four months babies</td>
<td>June 24, 2023</td>
</tr>
<tr>
<td>Vaccines given for six months babies</td>
<td>June 24, 2023</td>
</tr>
<tr>
<td>Vaccines given for twelve months babies</td>
<td>June 24, 2023</td>
</tr>
</tbody>
</table>
<nav class="ml-4">
<ul class="pagination">
<li class="page-item disabled">
<a href="'#'" class="page-link">Previous</a>
</li>
<li class="page-item active">
<a href="'#'" class="page-link">1</a>
</li>
<li class="page-item">
<a href="'#'" class="page-link">2</a>
</li>
<li class="page-item">
<a href="'#'" class="page-link">3</a>
</li>
<li class="page-item">
<a href="'#'" class="page-link">Next</a>
</li>
</ul>
</nav>
</div>
</div>
</div>
</div>
</section>
<footer id="main-footer" class="bg-dark text-white mt-5 p-5">
<div class="container">
<div class="row">
<div class="col">
<p class="lead text-center">Copywright © 2018</p>
</div>
</div>
</div>
</footer>
<!-- Optional JavaScript -->
<!-- jQuery first, then Popper.js, then Bootstrap JS -->
<script
src="https://code.jquery.com/jquery-3.2.1.slim.min.js"
integrity="sha384-KJ3o2DKtIkvYIK3UENzmM7KCkRr/rE9/Qpg6aAZGJwFDMVNA/GpGFF93hXpG5KkN"
crossorigin="anonymous"
></script>
<script
src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js"
integrity="sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q"
crossorigin="anonymous"
></script>
<script
src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/js/bootstrap.min.js"
integrity="sha384-JZR6Spejh4U02d8jOt6vLEHfe/JQGiRRSQQxSfFWpi1MquVdAyjUar5+76PVCmYl"
crossorigin="anonymous"
></script>
<script src="resources/js/script.js"></script>
<script src="https://cdn.ckeditor.com/4.7.1/standard/ckeditor.js"></script>
<script>
CKEDITOR.replace("editor1");
</script>
</body>
</html>