EditInfo.php
1.52 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
<?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');
?>
<table width="100%" border="0" align="center" cellpadding="3" cellspacing="1" class="tableborder">
<tr>
<td width="50%" height="30" bgcolor="#FFFFFF"> </td>
<td width="50%" bgcolor="#FFFFFF"><div align="right">[<a href="EditSafeInfo.php">密碼安全修改</a>] </div></td>
</tr>
</table>
<br>
<table width='100%' border='0' align='center' cellpadding='3' cellspacing='1' class="tableborder">
<form name=userinfoform method=post enctype="multipart/form-data" action=../doaction.php>
<input type=hidden name=enews value=EditInfo>
<tr class="header">
<td height="25" colspan="2">修改基本資料</td>
</tr>
<tr>
<td width='25%' height="25" bgcolor="#FFFFFF"> <div align='left'>用戶名 </div></td>
<td width='75%' height="25" bgcolor="#FFFFFF">
<?=$user[username]?>
</td>
</tr>
<tr bgcolor="#FFFFFF">
<td height="25" colspan="2">
<?php
@include($formfile);
?>
</td>
</tr>
<tr>
<td height="25" bgcolor="#FFFFFF"> </td>
<td height="25" bgcolor="#FFFFFF"> <input type='submit' name='Submit' value='修改信息'>
</td>
</tr>
</form>
</table>
<?php
require(ECMS_PATH.'e/template/incfile/footer.php');
?>