-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathreset_password.html
169 lines (84 loc) · 3.03 KB
/
reset_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
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.2/jquery.min.js"></script>
<script src="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js"></script>
<title>Cash Managment</title>
<meta name="generator" content=" " />
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<link href="css/bootstrap.min.css" rel="stylesheet">
<!--[if lt IE 9]>
<script src="//html5shim.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<link href="css/bootstrap.min.css" rel="stylesheet">
<link href="css/styles.css" rel="stylesheet">
<link href="css/font-awesome.min.css" rel="stylesheet">
<style>
.well{
font-size:15px;
font-weight:bold;
}
.field-wrap {
position:relative;
margin-bottom:40px;
margin-top:40px;
background-color:white;
}
</style>
</head>
<body style=" background:#b3d9ff;" >
<div class="navbar navbar-inverse" style="">
<div class="container">
<div class="col-md-12 col-xs-12" style="padding:2px;">
<a href='home.html' >
<center><h3 style="color:white;" >Cash Management</h3></center></a>
</div>
</div><!-- /.container -->
</div><!-- /.navbar -->
<!-- CONTENT
=================================-->
<div class="container">
<div class="row">
<div class="col-md-12 col-xs-12"><div class="well">
<center><p>Log In</p></center>
</div>
</div>
</div>
<!--------------- w3 school--------------->
<div class="container">
<div class="col-md-12 col-xs-12" style="background-color:white;">
<center>
<div class="field-wrap" style="background-color:white;">
<label>
New password<span class="req">*</span>
</label>
<input type="password"required autocomplete="off"/>
</div>
<div class="field-wrap">
<label>
Confirm Password<span class="req">*</span>
</label>
<input type="password"required autocomplete="off"/>
</div>
</center>
</div>
</div>
<div class="col-md-12 col-xs-12">
<a href="home.html">
<button type="button" class="btn btn-primary" style="width:100%;" >Submit</button></a>
</div>
<!-------------------w3 school end------------->
</div>
</div>
<hr>
</div>
<!-- /CONTENT ============-->
<!-- script references -->
<script src="//ajax.googleapis.com/ajax/libs/jquery/2.0.2/jquery.min.js"></script>
<script src="js/bootstrap.min.js"></script>
</body>
</html>