-
Notifications
You must be signed in to change notification settings - Fork 0
/
settings.html
73 lines (53 loc) · 3.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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
<html>
<head>
<title>settings.html</title>
<meta charset="utf-8">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.0/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.0/js/bootstrap.min.js"></script>
<mata name="viewpoint" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="index1.css">
</head>
<body>
<nav class="navbar navbar-inverse navbar-fixed-top">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#myNavbar">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a href="index.html" class="navbar-brand">Lifestyle Store</a>
</div>
<div class="collapse navbar-collapse" id="myNavbar">
<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="index.html"><span class="glyphicon glyphicon-log-in"></span> Logout</a></li>
</ul>
</div>
</div>
</nav>
<div class="container">
<div class="row">
<div class="col-md-6 col-md-offset-3"><br><br><br>
<form>
<div class="form-group">
<h1>Change Password</h1>
<input type="password" class="form-control input-lg" name="name" placeholder="Old password" ><br>
<input type="password" class="form-control input-lg" name="Email" placeholder="New password" >
<br>
<input type="password" class="form-control input-lg" name="Password" placeholder="re-type New Password" ><br>
<a href="index.html"> <button type="button" class="btn btn-primary" >change</button></a>
</div>
</form>
</div>
</div>
</div>
<footer>
<div class="container">
<p>Copyright © Lifestyle Store. All Rights Reserved and Contact Us: +91 90000 00000 </p>
</div>
</footer>
</body>
</html>