-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathresetpassword.php
More file actions
36 lines (33 loc) · 1.19 KB
/
resetpassword.php
File metadata and controls
36 lines (33 loc) · 1.19 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
<?php require('./Includefiles/conn.inc');
require('./Includefiles/header.php');
?>
<div id="content">
<div class="control-panel">
<div class="row">
<div class="small-12 columns">
<?php require('./Includefiles/leftlinks.php');?>
<h3>Reset Password</h3>
</div>
</div>
</div>
<div class="details">
<div class="row">
<section class="fields">
<table width="100%" border="0" cellpadding="2" cellspacing="2">
<form id="form" name="form" method="post" action="session.php" enctype="multipart/form-data">
<tr>
<td align="right" valign="top" class="medium">Your email</td>
<td valign="top" class="medium"><input type="email" name="email" value="" /></td>
</tr>
<tr>
<td width="35%" align="left" valign="top"><input type="hidden" name="formname" value="resetpass" />
</td>
<td width="65%" align="left" valign="top"><input type="submit" name="Submit" value="Submit" id="button" class="button" /></td>
</tr>
</form>
</table>
</section><!-- / .section -->
</div><!-- / .example-row -->
</div><!-- / .details -->
</div> <!---content --->
<?php require('./Includefiles/footer.php');?>