-
Notifications
You must be signed in to change notification settings - Fork 0
/
updatepw.php
205 lines (176 loc) · 6.16 KB
/
updatepw.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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
<html>
<?php session_start();
$sysotp= $_SESSION["otp"];
$dbmail=$_SESSION["username"];
$password= $_SESSION["pw"];
$type= $_SESSION["type"];?>
<?php require ("header.php");?>
<?php
if (isset($_POST['submit1'])) {
require_once 'sql.php';
$conn = mysqli_connect($host, $user, $ps, $project); if (!$conn) {
echo "<script>alert(\"Database error retry after some time !\")</script>";
}else{
if (isset($_POST['submit1'])) {
$usercode1 = $_POST['otp1'];
if ($usercode1 == $sysotp) {
$sql1 = "update " . $type . " set pw='{$password}' where mail='{$dbmail}'";
if (mysqli_query($conn, $sql1)) {
session_unset();
session_destroy();
header("location:index.php");
} elseif (!mysqli_query($conn, $sql1)) {
echo "<script>alert('Security code error')</script>";
}
}else{
echo "<script>alert('security code does't match')</script>";
}
} else {
echo "<script>alert('Please enter the Code')</script>";
}
}
}
?>
<body class="bg-white" id="top">
<!-- Navbar -->
<nav
id="navbar-main"
class="
navbar navbar-main navbar-expand-lg
bg-default
navbar-light
position-sticky
top-0
shadow
py-0
"
>
<div class="container">
<ul class="navbar-nav navbar-nav-hover align-items-lg-center">
<li class="nav-item dropdown">
<a href="index.php" class="navbar-brand mr-lg-5 text-white">
<img src="assets/img/navbar.png" />
</a>
</li>
</ul>
<button
class="navbar-toggler bg-white"
type="button"
data-toggle="collapse"
data-target="#navbar_global"
aria-controls="navbar_global"
aria-expanded="false"
aria-label="Toggle navigation"
>
<span class="navbar-toggler-icon text-white"></span>
</button>
<div class="navbar-collapse collapse bg-default" id="navbar_global">
<div class="navbar-collapse-header">
<div class="row">
<div class="col-10 collapse-brand">
<a href="index.html">
<img src="assets/img/navbar.png" />
</a>
</div>
<div class="col-2 collapse-close bg-danger">
<button
type="button"
class="navbar-toggler"
data-toggle="collapse"
data-target="#navbar_global"
aria-controls="navbar_global"
aria-expanded="false"
aria-label="Toggle navigation"
>
<span></span>
<span></span>
</button>
</div>
</div>
</div>
<ul class="navbar-nav align-items-lg-center ml-auto">
<li class="nav-item">
<a href="contact.php" class="nav-link">
<span class="text-white nav-link-inner--text"
><i class="text-white fas fa-address-card"></i> Contact</span
>
</a>
</li>
<li class="nav-item">
<a href="login.php" class="nav-link">
<span class="text-white nav-link-inner--text"
><i class="text-white fas fa-sign-in-alt"></i> Login</span
>
</a>
</li>
<li class="nav-item">
<a href="signup.php" class="nav-link">
<span class="text-white nav-link-inner--text"
><i class="text-white fas fa-user-plus"></i> Sign Up</span
>
</a>
</li>
</ul>
</div>
</div>
</nav>
<!-- End Navbar -->
<section class="section section-shaped section-lg">
<div class="shape shape-style-1 shape-primary">
<span></span>
<span></span>
<span></span>
<span></span>
<span></span>
<span></span>
<span></span>
<span></span>
<span></span>
<span></span>
</div>
<div class="row row-content align-text-center text-white ">
<div class="col-12 offset-sm-2 col-sm-8 offset-sm-2 ">
<div class="card card-body bg-dark">
<div class="col-12 " id="subcode">
<form
class="col s12 l5 white-text"
method="POST"
autocomplete="new-password"
>
<div class="form-group row">
<label class="col-md-2 col-form-label text-white" for="otp"
>Enter the Code</label
>
<div class="col-md-10">
<input
autocomplete="new-password"
class="white-text validate form-control"
placeholder=" code"
name="otp1"
type="number"
class="validate"
required
/>
</div>
</div>
<div class="form-group row">
<div class="offset-md-2 col-md-10">
<button class="btn btn-success form-control" name="submit1" class="sub" type="submit" value="Reset">
Reset
</button>
</div>
</div>
<div class="form-group row">
<div class="offset-md-2 col-md-10">
<a href="login.php">Login</a> New user! <a href="signup.php">SIGN UP</a>
</div>
</div>
</form>
</div>
</div>
</div>
</div>
</section>
<?php require("footer.php");?>
</body>
</html>