-
Notifications
You must be signed in to change notification settings - Fork 0
/
change-password.html
170 lines (166 loc) · 8.74 KB
/
change-password.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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Change Password to Investor Dashboard</title>
<!-- Meta -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=0, minimal-ui">
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="description" content="#">
<meta name="keywords"
content="Admin , Responsive, Landing, Bootstrap, App, Template, Mobile, iOS, Android, apple, creative app">
<meta name="author" content="#">
<!-- Favicon icon -->
<link rel="icon" href="Favicon.svg" type="image/x-icon">
<!-- Google font-->
<link href="https://fonts.googleapis.com/css?family=Open+Sans:400,600,800" rel="stylesheet">
<!-- Required Fremwork -->
<link rel="stylesheet" type="text/css" href="../files/bower_components/bootstrap/dist/css/bootstrap.min.css">
<!-- themify-icons line icon -->
<link rel="stylesheet" type="text/css" href="../files/assets/icon/themify-icons/themify-icons.css">
<!-- ico font -->
<link rel="stylesheet" type="text/css" href="../files/assets/icon/icofont/css/icofont.css">
<!-- Style.css -->
<link rel="stylesheet" type="text/css" href="style.css">
<!-- Include jQuery library -->
<script src="https://code.jquery.com/jquery-3.6.4.min.js"></script>
</head>
<body class="fix-menu">
<!-- Pre-loader start -->
<div class="theme-loader">
<div class="ball-scale">
<div class='contain'>
<div class="ring">
<div class="frame"></div>
</div>
<div class="ring">
<div class="frame"></div>
</div>
<div class="ring">
<div class="frame"></div>
</div>
<div class="ring">
<div class="frame"></div>
</div>
<div class="ring">
<div class="frame"></div>
</div>
<div class="ring">
<div class="frame"></div>
</div>
<div class="ring">
<div class="frame"></div>
</div>
<div class="ring">
<div class="frame"></div>
</div>
<div class="ring">
<div class="frame"></div>
</div>
<div class="ring">
<div class="frame"></div>
</div>
</div>
</div>
</div>
<!-- Pre-loader end -->
<section class="login-block">
<!-- Container-fluid starts -->
<div class="container">
<div class="row">
<div class="col-sm-12">
<!-- Authentication card start -->
<form id="loginForm" class="md-float-material form-material">
<div class="text-center">
<img src="viiLogo.png" alt="Vii-Logo" width="110">
</div>
<div class="auth-box card">
<div class="card-block">
<div class="row m-b-20">
<div class="col-md-12">
<h3 class="text-center">Change Password</h3>
</div>
</div>
<div class="mb-3 form-primary">
<input type="email" name="email" id="email" class="form-control" required=""
placeholder="Email Address or Username">
<span class="form-bar"></span>
</div>
<div class="mb-3 form-primary">
<input type="password" name="oldpassword" id="oldpassword" class="form-control"
required="" placeholder="Old Password">
<span class="form-bar"></span>
</div>
<div class="mb-3 form-primary">
<input type="password" name="newpassword" id="newpassword" class="form-control"
required="" placeholder="New Password">
<span class="form-bar"></span>
</div>
<div class="row m-t-25 text-start">
<div class="col-12">
<div class="checkbox-fade fade-in-primary d-">
<label class="form-label">
<input type="checkbox" value="">
<span class="cr"><i
class="cr-icon icofont icofont-ui-check txt-primary"></i></span>
<span class="text-inverse">Remember me</span>
</label>
</div>
<div class="forgot-phone text-end f-right">
<a href="auth-normal-sign-in.html" class="text-end f-w-600">Back to Log
in</a>
</div>
</div>
</div>
<div class="row m-t-30">
<div class="col-md-12">
<div class="d-grid">
<button type="button" id="changepassButton"
class="btn btn-primary btn-md waves-effect waves-light text-center m-b-20">
Submit
</button>
</div>
</div>
</div>
<hr />
<div class="row">
<div class="col-md-10">
<p class="text-inverse text-start m-b-0">Thank you.</p>
<p class="text-inverse text-start"><a href="index.html"><b class="f-w-600">Back
to website</b></a>
</p>
</div>
</div>
</div>
</div>
</form>
<!-- end of form -->
</div>
<!-- end of col-sm-12 -->
</div>
<!-- end of row -->
</div>
<!-- end of container-fluid -->
</section>
</div>
<!-- Required Jquery -->
<script type="text/javascript" src="../files/bower_components/jquery/dist/jquery.min.js"></script>
<script type="text/javascript" src="../files/bower_components/jquery-ui/jquery-ui.min.js"></script>
<script type="text/javascript" src="../files/bower_components/popper.js/dist/umd/popper.min.js"></script>
<script type="text/javascript" src="../files/bower_components/bootstrap/dist/js/bootstrap.min.js"></script>
<!-- jquery slimscroll js -->
<script type="text/javascript" src="../files/bower_components/jquery-slimscroll/jquery.slimscroll.js"></script>
<!-- modernizr js -->
<script type="text/javascript" src="../files/bower_components/modernizr/modernizr.js"></script>
<script type="text/javascript" src="../files/bower_components/modernizr/feature-detects/css-scrollbars.js"></script>
<!-- i18next.min.js -->
<script type="text/javascript" src="../files/bower_components/i18next/i18next.min.js"></script>
<!-- <script type="text/javascript"
src="../files/bower_components/i18next-xhr-backend/i18nextXHRBackend.min.js"></script> -->
<script type="text/javascript"
src="../files/bower_components/i18next-browser-languagedetector/i18nextBrowserLanguageDetector.min.js"></script>
<script type="text/javascript" src="../files/bower_components/jquery-i18next/jquery-i18next.min.js"></script>
<script type="text/javascript" src="../files/assets/js/common-pages.js"></script>
<script type="text/javascript" src="change-password.js"></script>
</body>
</html>