-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetting.php
75 lines (72 loc) · 2.84 KB
/
setting.php
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
<?php
require "connect.php";
session_start();
?>
<html>
<head>
<link rel="stylesheet" href=" css\bootstrap.min.css" >
<!--jQuery library-->
<script src=" js/jquery.min.js"></script>
<!--Latest compiled and minified JavaScript-->
<script src=" js\bootstrap.min.js"></script>
<!---<link rel="stylesheet" href="css/bindex.css">--->
<link rel="stylesheet" href="css/bindex.css">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>SignUp FreeStyle Store</title>
<style>
</style>
</head>
<body>
<?php
include 'header.php';
?>
<!---nav class="navbar navbar-inverse navbar-fixed-top navbar-responsive">
<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 class="navbar-brand" href="product.php">Lifestyle Store</a>
</div>
<div class="collapse navbar-collapse" id="myNavbar">
<ul class="nav navbar-nav navbar-right">
<li><a href="cart.php"><span class="glyphicon glyphicon-user"></span> Cart</a></li>
<li><a href="setting.php"><span class="glyphicon glyphicon-user"></span>Setting</a></li>
<li><a href="bindex.php"><span class="glyphicon glyphicon-log-out"></span>Logout</a></li>
</ul>
</div>
</div>
</nav>--->
<div class="container" style="margin-top:7.1%;">
<div class="row">
<div class="col-xs-4 col-xs-offset-4">
<div class="panel" id="panel">
<div class="panel-heading">
<Label><h3><b>Change Password</b></h3></label>
</div>
<div class="panel-body">
<form class="form-group">
<div class="form-group">
<input type="password" name="oldpassword" class="form-control" placeholder="Old-Password"></input><br>
<input type="password" name="newpassword" class="form-control" placeholder=" New-Password"></input><br>
<input type="password" name="retypepassword" class="form-control" placeholder=" Re-Type New Password"></input><br>
</div>
<button type="Submit "class="btn btn-primary" >Change</button>
</form>
</div>
</div>
</div>
</div>
</div>
<div class="footer" style="margin-top:15%;">
<div class="container">
<center>
Copyright © <a href="bindex.php">Lifestyle Store.</a> All Rights
Reserved” and “Contact Us: +91 90000 00000"
</center>
</div>
</div>
</body>
</html>