-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathalterpassword.php
81 lines (78 loc) · 2.36 KB
/
alterpassword.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
76
77
78
79
80
81
<!--
Author: W3layouts
Author URL: http://w3layouts.com
License: Creative Commons Attribution 3.0 Unported
License URL: http://creativecommons.org/licenses/by/3.0/
-->
<!DOCTYPE html>
<?php
session_start();
?>
<html>
<head>
<title>UB TRADE</title>
<link rel="stylesheet" href="css/bootstrap.min.css"><!-- bootstrap-CSS -->
<link href="css/style.css" rel="stylesheet" type="text/css" media="all" /><!-- style.css -->
<link rel="stylesheet" href="css/font-awesome.min.css" /><!-- fontawesome-CSS -->
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- header -->
<header>
<div class="w3ls-header"><!--header-one-->
<div class="w3ls-header-right">
<ul>
<li class="dropdown head-dpdn">
<a href="signin_front.php" aria-expanded="false"><i class="fa fa-user" aria-hidden="true"></i>
<a>
<?php if (isset($_SESSION['username']))
{
echo $_SESSION['username'];
} else echo"Sign In"?></a>
</li>
</ul>
</div>
<div class="clearfix"> </div>
</div>
<div class="container">
<div class="agile-its-header">
<div class="logo">
<h1><a href="index.php"><span>UB</span>TRADE</a></h1>
</div>
<div class="agileits_search">
<a class="post-w3layouts-ad" href="index.php">Back to Homepage</a>
</div>
<div class="clearfix"></div>
</div>
</div>
</header>
<!-- //header -->
<!-- sign in form -->
<section>
<div id="agileits-sign-in-page" class="sign-in-wrapper">
<div class="agileinfo_signin">
<h3>Account information</h3>
<form action="alterpassword.handle.php" method="post">
<input type="email" name="useremail" placeholder="Your_Email" required="">
<input type="password" name="oldpassword" placeholder="Old Password" required="">
<input type="password" name="newpassword" placeholder="New Password" required="">
<input type="submit" value="Submit Change">
</form>
</div>
</div>
</section>
<!-- //sign in form -->
<!--footer section start-->
<footer>
<div class="agileits-footer-bottom text-center">
<div class="container">
<div class="w3-footer-logo">
<h1><a href="index.php"><span>UB</span>TRADE</a></h1>
</div>
<div class="copyrights">
<p> Design by <label> CSE_442_TEAM</label></p>
</div>
<div class="clearfix"></div>
</div>
</div>
</footer>
<!--footer section end-->
</html>