git-svn-id: http://xe-core.googlecode.com/svn/trunk@888 201d5d3c-b55e-5fd7-737f-ddc643e51545

This commit is contained in:
zero 2007-04-02 07:00:24 +00:00
parent cf8e6380e9
commit ad5bfed398
6 changed files with 121 additions and 8 deletions

View file

@ -0,0 +1,47 @@
<!--%import("filter/modify_password.xml")-->
<!--%import("js/member.js")-->
<div>
{$lang->msg_update_member}
</div>
<form id="fo_insert_member" action="./" method="get" onsubmit="return procFilter(this, modify_password)">
<input type="hidden" name="mid" value="{$mid}" />
<input type="hidden" name="document_srl" value="{$document_srl}" />
<input type="hidden" name="page" value="{$page}" />
<div>
{$lang->member_default_info}
</div>
<table border="1">
<tr>
<th>{$lang->user_id}</th>
<td>
{$member_info->user_id}
</td>
</tr>
<tr>
<th rowspan="3">{$lang->password1}</th>
<td>
<input type="password" name="password1" value="" />
</td>
</tr>
<tr>
<td>
<input type="password" name="password2" value="" /> {$lang->password2}
</td>
</tr>
<tr>
<td>{$lang->about_password}</td>
</tr>
</table>
<table border="1">
<tr>
<td colspan="2">
<input type="button" value="{$lang->cmd_cancel}" onclick="location.href='{getUrl('act','dispMemberInfo')}'" />
<input type="submit" value="{$lang->cmd_registration}" accesskey="s" />
</td>
</tr>
</table>
</form>