-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathforgotpass.php
More file actions
40 lines (32 loc) · 778 Bytes
/
forgotpass.php
File metadata and controls
40 lines (32 loc) · 778 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
<?php
include 'connect.php';
?>
<html>
<head>
<title>forgot pass</title>
</head>
<body>
<center>
<img src="logo.png" alt="logo" height="100px" width="400px"/>
</center>
<center>
<hr width = 30%>
<form action="randomno.php" method="post" autocomplete="off">
<table>
<tr>
<td> EMAIL: </td>
<td> <input type="email" name='email' maxlength='100' placeholder="abc@xyz.com" required/> </td>
</tr>
<tr>
<td colspan="2" align="center" ><input type='submit' value="SUBMIT" /></td>
</tr>
<tr>
<td colspan="2" align="center"> <a href="changepass.php"><input type="button"
value="enter OTP here"/></a>
</td>
</tr>
</table>
</form>
</center>
<body>
<html>