forked from enindu/admin-panel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprofile.html
executable file
·148 lines (144 loc) · 7.08 KB
/
profile.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Admin Panel</title>
<link rel="icon" href="images/favicon.png" type="image/png">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,200;1,300;1,400;1,500;1,600;1,700&display=swap">
<link rel="stylesheet" href="node_modules/@fortawesome/fontawesome-free/css/all.min.css">
<link rel="stylesheet" href="node_modules/halfmoon/css/halfmoon.min.css">
<link rel="stylesheet" href="css/style.css">
</head>
<body class="dark-mode with-custom-css-scrollbars with-custom-webkit-scrollbars">
<!-- Page wrapper -->
<div class="page-wrapper with-navbar with-sidebar">
<!-- Navigation bar -->
<div class="navbar">
<div class="navbar-content">
<button id="sidebar" class="btn btn-square">
<i class="fa-solid fa-bars"></i>
</button>
</div>
<a href="index.html" class="navbar-brand">
<img src="images/icon.svg" alt="icon" width="30" height="30"> Admin Panel
</a>
<span class="navbar-text">
<span class="version"></span>
</span>
</div>
<!-- End navigation bar -->
<!-- Sidebar -->
<div class="sidebar">
<div class="sidebar-menu">
<h6 class="sidebar-title">Dashboard</h6>
<div class="sidebar-divider"></div>
<a href="index.html" class="sidebar-link sidebar-link-with-icon">
<span class="sidebar-icon">
<i class="fa-solid fa-home"></i>
</span>
Home
</a>
<a href="profile.html" class="sidebar-link sidebar-link-with-icon active">
<span class="sidebar-icon bg-primary text-white">
<i class="fa-solid fa-user"></i>
</span>
Profile
</a>
<a href="login.html" class="sidebar-link sidebar-link-with-icon">
<span class="sidebar-icon">
<i class="fa-solid fa-sign-in-alt"></i>
</span>
Login
</a>
<a href="logout.html" class="sidebar-link sidebar-link-with-icon">
<span class="sidebar-icon">
<i class="fa-solid fa-sign-out-alt"></i>
</span>
Logout
</a>
<h6 class="sidebar-title mt-20">Application</h6>
<div class="sidebar-divider"></div>
<a href="form.html" class="sidebar-link sidebar-link-with-icon">
<span class="sidebar-icon">
<i class="fa-solid fa-pen"></i>
</span>
Form
</a>
<a href="table.html" class="sidebar-link sidebar-link-with-icon">
<span class="sidebar-icon">
<i class="fa-solid fa-pen"></i>
</span>
Table
</a>
<h6 class="sidebar-title mt-20">External Links</h6>
<div class="sidebar-divider"></div>
<a href="#" target="_blank" class="sidebar-link sidebar-link-with-icon">
<span class="sidebar-icon bg-danger text-white">
<i class="fa-solid fa-globe"></i>
</span>
Website
</a>
<a href="https://phyxle.com" target="_blank" class="sidebar-link sidebar-link-with-icon">
<span class="sidebar-icon bg-danger text-white">
<i class="fa-solid fa-globe"></i>
</span>
Phyxle
</a>
</div>
</div>
<!-- End sidebar -->
<!-- Content wrapper -->
<div class="content-wrapper">
<div class="container-fluid">
<div class="row row-eq-spacing align-items-center">
<div class="col-12 col-sm-auto mb-20 mb-sm-0">
<button id="back" class="btn">
<i class="fa-solid fa-chevron-left mr-5"></i> Back
</button>
</div>
<div class="col-12 col-sm-auto">
<h4 class="my-0">
<i class="fa-solid fa-user mr-5"></i> Profile
</h4>
</div>
</div>
<div class="row row-eq-spacing">
<div class="col-12 col-sm-6 col-lg-3">
<div class="card p-15">
<h1 class="card-title">
<i class="fa-solid fa-check mr-5"></i> Update Password
</h1>
<form action="#" method="post">
<div class="form-group">
<label for="new-password" class="required">Enter new password</label>
<input type="password" name="new_password" id="new-password" class="form-control" placeholder="New Password" minlength="8" maxlength="32" autocomplete="off" required>
</div>
<div class="form-group">
<label for="confirm-new-password" class="required">Confirm new password</label>
<input type="password" name="confirm_new_password" id="confirm-new-password" class="form-control" placeholder="Confirm New Password" minlength="8" maxlength="32" autocomplete="off" required>
</div>
<div class="form-group">
<label for="current-password" class="required">Enter current password</label>
<input type="password" name="current_password" id="current-password" class="form-control" placeholder="Current Password" minlength="8" maxlength="32" autocomplete="off" required>
</div>
<div class="text-right">
<button class="btn">
<i class="fa-solid fa-check mr-5"></i> Update
</button>
</div>
</form>
</div>
</div>
</div>
</div>
</div>
<!-- End content wrapper -->
</div>
<!-- End page wrapper -->
<script src="node_modules/halfmoon/js/halfmoon.min.js"></script>
<script src="js/script.js"></script>
</body>
</html>