forked from alexisbriandev/bootstrap-simple-admin-template
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprofile.html
More file actions
105 lines (89 loc) · 3.6 KB
/
profile.html
File metadata and controls
105 lines (89 loc) · 3.6 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Profile | Bootstrap Simple Admin Template</title>
<link href="assets/vendor/fontawesome/css/fontawesome.min.css" rel="stylesheet">
<link href="assets/vendor/fontawesome/css/solid.min.css" rel="stylesheet">
<link href="assets/vendor/fontawesome/css/brands.min.css" rel="stylesheet">
<link href="assets/vendor/bootstrap/css/bootstrap.min.css" rel="stylesheet">
<link href="assets/vendor/datatables/datatables.min.css" rel="stylesheet">
<link href="assets/css/master.css" rel="stylesheet">
<style>
.box-body {
margin-top: 20px;
position: relative; /* Make the box-body container relative */
}
.box-body strong {
margin-bottom: 10px;
}
.logout-button {
position: absolute;
bottom: 10px; /* Adjust as needed */
right: 10px; /* Adjust as needed */
}
</style>
</head>
<body>
<div class="wrapper">
<nav id="sidebar" class="active">
<div class="sidebar-header">
<img src="assets/img/PanTRY.png" alt="bootraper logo" class="app-logo">
</div>
<ul class="list-unstyled components text-secondary">
<li>
<a href="Home.html
"><i class="fas fa-home"></i> Home</a>
</li>
<li>
<a href="cookbook.html"><i class="fas fa-book-open"></i>Cookbook</a>
</li>
<li>
<a href="pantry.html"><i class="fas fa-hamburger"></i>Pantry</a>
</li>
</ul>
</nav>
<!-- end of sidebar component -->
<div id="body" class="active">
<!-- navbar navigation component -->
<nav class="navbar navbar-expand-lg navbar-white bg-white">
<button type="button" id="sidebarCollapse" class="btn btn-light">
<i class="fas fa-bars"></i><span></span>
</button>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="nav navbar-nav ms-auto">
<li class="nav-item">
<a href="profile.html" class="nav-link text-secondary">
<i class="fas fa-user"></i>
</a>
</li>
</ul>
</div>
</nav>
<!-- end of navbar navigation -->
<div class="content">
<div class="container">
<div class="page-title">
<h3>Profile</h3>
</div>
<div class="box box-primary">
<div class="box-body">
<strong>Username:</strong><br> n/a<br><br>
<strong>Password:</strong><br> n/a<br><br>
<!-- Logout button -->
<a href="login.html" class="btn btn-primary shadow-2 mb-4 logout-button">Logout</a>
</div>
</div>
</div>
</div>
</div>
</div>
<script src="assets/vendor/jquery/jquery.min.js"></script>
<script src="assets/vendor/bootstrap/js/bootstrap.bundle.min.js"></script>
<script src="assets/vendor/datatables/datatables.min.js"></script>
<script src="assets/js/initiate-datatables.js"></script>
<script src="assets/js/script.js"></script>
</body>
</html>