-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathadminHeader.php
More file actions
34 lines (28 loc) · 1.1 KB
/
adminHeader.php
File metadata and controls
34 lines (28 loc) · 1.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Food Mart || Admin</title>
<link rel="stylesheet" href="css/bootstrap.css" />
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.9.1/font/bootstrap-icons.css">
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<!--header-->
<div class="container-fluid bg-body-secondary border border-2 border-dark-subtle">
<div class="row">
<div class="col-6 align-content-center">
<h4><a class="navbar-brand fw-bold">Milano</a></h4>
<strong>Admin Panel</strong>
</div>
<div class="col-6 text-end">
<img src="img/profile_images/user.jpg" alt="" width="60px" height="60px" class="rounded-circle">
</div>
</div>
</div>
<!--header end-->
<script src="js/script.js"></script>
</body>
</html>