GetPassword.php
1.49 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
<?php
if(!defined('InEmpireCMS'))
{
exit();
}
?>
<?php
$public_diyr['pagetitle']='取回密碼';
$url="<a href=../../../>首頁</a> > <a href=../cp/>會員中心</a> > 取回密碼";
require(ECMS_PATH.'e/template/incfile/header.php');
?>
<br>
<table width="500" border="0" align="center" cellpadding="3" cellspacing="1" class="tableborder">
<form name="GetPassForm" method="POST" action="../doaction.php">
<tr class="header">
<td height="25" colspan="2"><div align="center">取回密碼</div></td>
</tr>
<tr bgcolor="#FFFFFF">
<td width="23%" height="25">用戶名</td>
<td width="77%"><input name="username" type="text" id="username" size="38"></td>
</tr>
<tr bgcolor="#FFFFFF">
<td height="25">郵箱</td>
<td><input name="email" type="text" id="email" size="38"></td>
</tr>
<tr bgcolor="#FFFFFF">
<td height="25">驗證碼</td>
<td><input name="key" type="text" id="key" size="6"> <img src="../../ShowKey/?v=getpassword" name="getpasswordKeyImg" id="getpasswordKeyImg" onclick="getpasswordKeyImg.src='../../ShowKey/?v=getpassword&t='+Math.random()" title="看不清楚,點擊刷新"></td>
</tr>
<tr bgcolor="#FFFFFF">
<td height="25"> </td>
<td> <input type="submit" name="button" value="提交"> <input name="enews" type="hidden" id="enews" value="SendPassword"></td>
</tr>
</form>
</table>
<br>
<?php
require(ECMS_PATH.'e/template/incfile/footer.php');
?>