-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
370 lines (296 loc) · 17.1 KB
/
index.html
File metadata and controls
370 lines (296 loc) · 17.1 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
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
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
<!doctype html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Bootstrap CSS -->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.1/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-+0n0xVW2eSR5OomGNYDnhzAbDsOXxcvSN1TPprVMTNDbiYZCxYbOOl7+AMvyTG2x" crossorigin="anonymous">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css" integrity="sha512-iBBXm8fW90+nuLcSKlbmrPcLa0OT92xO1BIsZ+ywDWZCvqsWgccV3gFoRBv0z+8dLJgyAHIhR35VZc2oM/gI1w==" crossorigin="anonymous" referrerpolicy="no-referrer" />
<!-- reset.css -->
<link rel="stylesheet" href="css/reset.css">
<!-- Styel.css -->
<link rel="stylesheet" href="css/style.css">
<title>MasterAdmin Admin Theme</title>
</head>
<body>
<!-- NAvbar Section -->
<nav class="navbar navbar-expand-lg navbar-light ">
<div class="container">
<a class="navbar-brand" href="#"> MasterAdmin <span class="version-code" >Beta V0.1</span></a>
<a href="#" class="navbar-brand admin-name" style="font-size: 14px">| Welcome Alex</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav ms-auto mb-2 mb-lg-0">
<li class="nav-item">
<a class="nav-link active" aria-current="page" href="#">Dasboard</a>
</li>
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="#" id="navbarDropdown" role="button" data-bs-toggle="dropdown" aria-expanded="false">
Pages
</a>
<ul class="dropdown-menu" aria-labelledby="navbarDropdown">
<li><a class="dropdown-item" href="#">Login</a></li>
</ul>
</li>
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="#" id="navbarDropdown" role="button" data-bs-toggle="dropdown" aria-expanded="false">
Components
</a>
<ul class="dropdown-menu" aria-labelledby="navbarDropdown">
<li><a class="dropdown-item" href="#">Side Bar</a></li>
<li><a class="dropdown-item" href="Componenets/alert.html">Alerts</a></li>
<li><a class="dropdown-item" href="Componenets/fixed.html">Fixed Navbar</a></li>
<li><a class="dropdown-item" href="Componenets/tables.html">Tables</a></li>
<li><a class="dropdown-item" href="Componenets/footer.html">
Footer</a></li>
<li><a class="dropdown-item" href="Componenets/colors.html">
Colors</a></li>
</ul>
</li>
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="#" id="navbarDropdown" role="button" data-bs-toggle="dropdown" aria-expanded="false">
Prosedures
</a>
<ul class="dropdown-menu" aria-labelledby="navbarDropdown">
<li><a class="dropdown-item" href="#">Add-Page</a></li>
<li><a class="dropdown-item" href="#">Add-User</a></li>
<li>
<hr class="dropdown-divider">
</li>
<li><a class="dropdown-item" href="#">Add-Posts</a></li>
</ul>
</li>
<li class="nav-item">
<a class="nav-link" href="#">Profile Settings</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">LogOut</a>
</li>
</ul>
</div>
</div>
</nav>
<!-- End of Navbar Section -->
<section id="body-section">
<!-- Header SEction -->
<section id="heroSection">
<div class="container-fluid">
<div class="row">
<div class="col-md-10">
<h1><i class="fas fa-cog"></i> DashBoard <span style="">Manage Your Web Site</span></h1>
</div>
<div class="col-md-2">
<!-- Button trigger modal -->
<button type="button" class="btn btn-primary" data-bs-toggle="modal" data-bs-target="#exampleModal">
General Settings
</button>
<!-- General Settings Modal -->
<div class="modal fade" id="exampleModal" tabindex="-1" aria-labelledby="exampleModalLabel" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="exampleModalLabel">General Settings | Site Settings</h5>
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
</div>
<div class="modal-body">
<div class="mb-3">
<label for="exampleFormControlInput1" class="form-label">Site Title</label>
<input type="text" class="form-control" id="exampleFormControlInput1" placeholder="Your Site Title">
</div>
<div class="mb-3">
<label for="exampleFormControlInput1" class="form-label">Site Author</label>
<input type="text" class="form-control" id="exampleFormControlInput1" placeholder="Site Author">
</div>
<div class="mb-3">
<label for="exampleFormControlInput1" class="form-label">Site Favicon Url</label>
<input type="text" class="form-control" id="exampleFormControlInput1" placeholder="Site Favicon Url">
</div>
<div class="mb-3">
<label for="exampleFormControlTextarea1" class="form-label">Site Description </label>
<textarea class="form-control" id="exampleFormControlTextarea1" rows="3"></textarea>
</div>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-secondary" data-bs-dismiss="modal">Close</button>
<button type="button" class="btn btn-primary">Save changes</button>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- End Of Header-->
<!-- Section -->
<section id="side-user-card">
<div class="container">
<div class="row">
<div class="col-md-3">
<div class="card">
<img src="assets/img/avatar-%C4%B0mg.png" class="card-img-top" alt="...">
<div class="card-body">
<h5 class="card-title text-center">Alex Alex</h5>
</div>
</div>
</div>
<div class="col-md-9">
<!-- Alert Message -->
<div class="alert welcome-alert-message" role="alert">
<h4 class="alert-heading">Welcome to MasterAdmin </h4>
<hr>
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Aliquid sint architecto deleniti dolore amet laboriosam doloribus quisquam dolores earum perspiciatis aliquam hic qui, facere aut totam doloremque itaque aspernatur! Impedit.</p>
</div>
<div class="accordion" id="accordionExample">
<div class="accordion-item">
<h2 class="accordion-header" id="headingOne">
<button class="accordion-button" type="button" data-bs-toggle="collapse" data-bs-target="#collapseOne" aria-expanded="true" aria-controls="collapseOne">
<strong>Website Oviervies</strong>
</button>
</h2>
<div id="collapseOne" class="accordion-collapse collapse show" aria-labelledby="headingOne" data-bs-parent="#accordionExample">
<div class="accordion-body">
<div class="websie-ovirview">
<div class="row ">
<div class="col-md-3 website-overview-card"><a href="">
<p> 13 <i class="fas fa-users"></i></p>
<p class="mt-1" style="font-size: 26px">Users</p>
</a></div>
<div class="col-md-3 website-overview-card"><a href="">
<p> 23 <i class="fas fa-paper-plane"></i></p>
<p class="mt-1" style="font-size: 26px">Posts</p>
</a></div>
<div class="col-md-3 website-overview-card"><a href="">
<p> 43 <i class="fas fa-truck"></i></p>
<p class="mt-1" style="font-size: 26px">Products</p>
</a></div>
<div class="col-md-3 website-overview-card"><a href="">
<p> 54 <i class="fas fa-envelope"></i></p>
<p class="mt-1" style="font-size: 26px">Message</p>
</a></div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section id="sidebar">
<div class="container">
<div class="row">
<div class="col-md-3">
<div class="list-group">
<a href="#" class="list-group-item list-group-item-action active" aria-current="true">
<i class="fas fa-cog"></i> Dashboard
</a>
<a href="#" class="list-group-item list-group-item-action"> <i class="fas fa-file"></i> All Pages <span class="badge bg-primary rounded-pill">7</span></a>
<a href="#" class="list-group-item list-group-item-action"><i class="fas fa-paper-plane"></i> All Posts <span class="badge bg-primary rounded-pill">22</span></a>
<a href="#" class="list-group-item list-group-item-action"> <i class="fas fa-users"></i> Users <span class="badge bg-primary rounded-pill">34</span></a>
<a href="#" class="list-group-item list-group-item-action "><i class="fas fa-envelope"></i> Messages <span class="badge bg-primary rounded-pill">14</span></a>
</div>
<div class="disk-space">
<p>Disk Space Used</p>
<div class="progress mt-2">
<div class="progress-bar" role="progressbar" style="width: 25%;" aria-valuenow="25" aria-valuemin="0" aria-valuemax="100">25%</div>
</div>
</div>
<div class="bandwidth">
<p>Bandwidth Used</p>
<div class="progress mt-2">
<div class="progress-bar" role="progressbar" style="width: 45%;" aria-valuenow="45" aria-valuemin="0" aria-valuemax="100">45%</div>
</div>
</div>
</div>
<div class="col-md-9">
<!-- Users-Table Section -->
<div class="table-section ">
<h3 class="text-center">Users</h3>
<hr>
<table class="table table-striped ">
<thead>
<tr>
<th scope="col">#</th>
<th scope="col">First</th>
<th scope="col">Last</th>
<th scope="col">Handle</th>
</tr>
</thead>
<tbody>
<tr>
<th scope="row">1</th>
<td>Mark</td>
<td>Otto</td>
<td>@mdo</td>
</tr>
<tr>
<th scope="row">2</th>
<td>Jacob</td>
<td>Thornton</td>
<td>@fat</td>
</tr>
<tr>
<th scope="row">3</th>
<td colspan="2">Larry the Bird</td>
<td>@twitter</td>
</tr>
</tbody>
</table>
</div>
<div class="table-section mt-3">
<h3 class="text-center">All Products</h3>
<hr>
<table class="table table-striped ">
<thead>
<tr>
<th scope="col">#</th>
<th scope="col">First</th>
<th scope="col">Last</th>
<th scope="col">Handle</th>
</tr>
</thead>
<tbody>
<tr>
<th scope="row">1</th>
<td>Mark</td>
<td>Otto</td>
<td>@mdo</td>
</tr>
<tr>
<th scope="row">2</th>
<td>Jacob</td>
<td>Thornton</td>
<td>@fat</td>
</tr>
<tr>
<th scope="row">3</th>
<td colspan="2">Larry the Bird</td>
<td>@twitter</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
</div>
</section>
<!-- end of Section -->
</section>
<!-- Footer -->
<footer class="text-center text-lg-start ">
<!-- Copyright -->
<div class="text-center p-4">
© 2021 Copyright: MasterAdmin <span class="version-code">Beta V0.1</span><br>
<a class="text-reset " href="https://masterweb2000.com/">MasterWeb2000.com</a>
</div>
<!-- Copyright -->
</footer>
<!-- Footer -->
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.0.1/dist/js/bootstrap.bundle.min.js" integrity="sha384-gtEjrD/SeCtmISkJkNUaaKMoLD0//ElJ19smozuHV6z3Iehds+3Ulb9Bn9Plx0x4" crossorigin="anonymous"></script>
</body>
</html>