-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathreset_password.php
More file actions
executable file
·65 lines (40 loc) · 1.6 KB
/
reset_password.php
File metadata and controls
executable file
·65 lines (40 loc) · 1.6 KB
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
<?php include_once("include/header.php"); ?>
<?php include_once('include/unauthorize.php'); ?>
<h3>Interactive Environmental Education Portal</h3>
</div>
<?php
if(isset($_REQUEST['err']))
{
echo "<div class='alert alert-error' ><center>Entered User Name does not exist</div>";
}
?>
<?php
if(isset($_REQUEST['error']))
{
echo "<div class='alert alert-error' ><center>Securtiy Questions Answered Incorrectly</div>";
}
?>
<div class="row">
<div style="text-align:center" class="span12">
<div class="row">
<div class="span6 offset3">
<form class="well form-search" method="post" action="verify_acct.php" name="login">
<legend>Forgot Password</legend>
<input type="email" class="input-small span4" placeholder="Email-ID" name="email">
<input type="hidden" name='type' value='email'>
<button type="submit" class="btn">Send Email</button>
</form>
<form class="well form-search" method="post" action="verify_acct.php" name="login">
<legend>Or Answer your Security Questions</legend>
<input type="hidden" name='type' value='user_name'>
<input type="text" class="input-small span3" placeholder="Username" name="username">
<button type="submit" class="btn">Get Security Questions</button>
</form>
</div>
</div>
</div>
</div>
</section>
<?php include("include/footer.php"); ?>
</body>
</html>