forked from Sanjyotbhangare/Kingsman
-
Notifications
You must be signed in to change notification settings - Fork 0
/
forget.php
61 lines (52 loc) · 1.55 KB
/
forget.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
<?php
session_start();
?>
<html>
<head>
<meta charset="utf-8">
<title>Menswear</title>
<link rel="stylesheet" href="css/login.css">
</head>
<style>
p{
color: red;
display: flex;
width: 90%;
margin-left: 10%;
/* text-size-adjust: 50%; */
font-size: 15px;
}
h1{
margin-right: 40%;
}
</style>
<body>
<div class="navbar">
<img src="images/logo.png" class="rotate">
</div>
<form action="check_forget.php" method="post">
<div class="login-box">
<h2>Forget Password</h2>
<?php if (isset($_GET['error'])){ ?>
<p class="error"><?php echo $_GET['error']; ?></p>
<?php } ?>
<div class="textbox">
<i class="fa fa-user" aria-hidden="true"></i>
<input type="text" autocomplete="off" placeholder="Mobile No" name="mob">
</div>
<div class="textbox">
<i class="fa fa-lock" aria-hidden="true"></i>
<input type="password" placeholder="New Password" name="pas">
</div>
<div class="textbox">
<i class="fa fa-lock" aria-hidden="true"></i>
<input type="password" placeholder="Confirm New Password" name="cpas">
</div>
<input class="btn" type="submit" name="" value="Sign In">
</div>
</form>
<?php
$_SESSION['mobno']='mob';
?>
</body>
</html>