-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathchangepass.php
More file actions
48 lines (40 loc) · 874 Bytes
/
changepass.php
File metadata and controls
48 lines (40 loc) · 874 Bytes
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
<?php
include 'connect.php';
?>
<html>
<head>
<title> Photoz </title>
</head>
<body>
<center>
<img src="logo.png" alt="logo" height="100px" width="400px"/>
</center>
<center>
<hr width = 30%>
<form action="updatepass.php" method="post" autocomplete="off">
<table>
<tr>
<td>EMAIL:</td>
<td><input type="email" name="email" required/></td>
</tr>
<tr>
<td>OTP:</td>
<td><input type="text" name="otp" required /></td>
</tr>
<tr>
<td>NEW PASSWORD </td>
<td> <input type="password" name='pass1' maxlength='50' maxlength='50' required/> </td>
</tr>
<tr>
<td>CONFIRM PASSWORD: </td>
<td> <input type="password" name='pass2' maxlength='50' required>
</tr>
<tr>
<td></td>
<td ><input type="submit" value="SUBMIT" /></td>
</tr>
</table>
</form>
</center>
</body>
</html>