-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetting.php
More file actions
49 lines (42 loc) · 2 KB
/
Copy pathsetting.php
File metadata and controls
49 lines (42 loc) · 2 KB
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
<?php
require_once("includes/common.php");
session_start();
if (!isset($_SESSION['email'])) {
header('location: index.php');
}
?>
<!DOCTYPE html>
<html lang="en">
<head>
<title>setting | E-Store</title>
<link rel="stylesheet" type="text/css" href="style.css">
<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" >
<!-- jQuery library -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
<!-- Latest compiled and minified JavaScript -->
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
<body>
<?php include 'includes/header.php'; ?>
<div class="container-fluid" id="content">
<div class="row">
<div class="col-lg-4 col-lg-offset-4" id="settings-container">
<h4>Change Password</h4>
<form method="POST" action="setting1.php" >
<div class="form-group">
<input type="old-password" class="form-control" name="old-password" placeholder="old-password" required = "true">
</div>
<div class="form-group">
<input type="new-password" class="form-control" name="new-password" placeholder="new-password" required = "true">
</div>
<div class="form-group">
<input type="re-type_new-password" class="form-control" name="re-type_new-password" placeholder="re-type_new-password" required = "true">
</div>
<button type="submit" class="btn btn-primary">Change</button>
</form>
</div>
</div>
</div>
<?php include("includes/footer.php"); ?>
</body>
</html>