-
Notifications
You must be signed in to change notification settings - Fork 0
/
settings.html
56 lines (51 loc) · 2.33 KB
/
settings.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
<!DOCTYPE html>
<html>
<head>
<title>settings</title>
<link rel="stylesheet" type="text/css" href="stylesheet.css">
<link href="bootstrap/css/bootstrap.min.css" rel="stylesheet">
</head>
<body>
<div class="navbar navbar-inverse navbar-fixed-top" >
<div class="container-fluid">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target="navCollapse">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<ul class="nav navbar-nav">
<li><a href="#">Lifestyle Store </a></li>
</ul>
<div class="collapse navbar-collapse">
<ul class="nav navbar-nav navbar-right" >
<li><a href="cart.html"><span class="glyphicon glyphicon-shopping-cart "></span> Cart</a></li>
<li><a href="settings.html"><span class="glyphicon glyphicon-user "></span> Settings</a></li>
<li><a href="logout.html"><span class="glyphicon glyphicon-log-out"></span> Logout</a></li>
</ul>
</div>
</div>
</div>
<div class="container">
<div class="row row_style">
<div class="col-md-6">
<h1>Change Password</h1>
<form>
<div class="form-group">
<input type="text" class="form-control" name="Old password" placeholder="Old Password"><br><br>
<input type="text" class="form-control" name="New password" placeholder="New Password"><br><br>
<input type="text" class="form-control" name="Re-type new password" placeholder="Re-type new Password"><br><br>
</div>
<button class="btn btn-primary">Change</button>
</form>
</div>
</div>
</div>
</body>
<footer>
<div class="container">
<center>
Copyright © Lifestyle Store. All Rights Reserved|Contact Us: +91 90000 00000
</center>
</div>
</footer>
</html>