rhymix/modules/member/skins/simple_world/modify_password.html
2017-01-08 17:27:28 +09:00

37 lines
1.7 KiB
HTML

<include target="./common_header.html" />
<div class="sw-body">
<h1>{$member_title = $lang->cmd_modify_member_password}</h1>
<div cond="$XE_VALIDATOR_MESSAGE" class="rx_member-notice {$XE_VALIDATOR_MESSAGE_TYPE}">
<p>{$XE_VALIDATOR_MESSAGE}</p>
</div>
<form ruleset="modifyPassword" id="fo_insert_member" action="./" method="post">
<input type="hidden" name="module" value="member" />
<input type="hidden" name="act" value="procMemberModifyPassword" />
<input type="hidden" name="mid" value="{$mid}" />
<input type="hidden" name="document_srl" value="{$document_srl}" />
<input type="hidden" name="page" value="{$page}" />
<input type="hidden" name="xe_validator_id" value="modules/member/skins/simple_world/1" />
<input type="hidden" name="success_return_url" value="{getUrl('act','dispMemberInfo')}" />
<div class="control-group">
<label for="uid">
{lang($identifier)}
</label>
<input type="text" disabled="disabled" value="{$formValue}" id="uid" title="{lang($identifier)}" />
<label for="cpw">
{lang('member.current_password')}
</label>
<input type="password" name="current_password" id="cpw" required title="{$lang->current_password}" />
<label for="npw1">
{lang('common.password1')}
</label>
<input type="password" name="password1" id="npw1" required title="{$lang->password1}" /> <span class="rx_member-notice">{$lang->about_password_strength[$member_config->password_strength]}</span>
<label for="npw2">
{lang('common.password2')}
</label>
<input type="password" name="password2" id="npw2" required title="{$lang->password2}" />
<input type="submit" value="{$lang->cmd_registration}" />
</div>
</form>
</div>
<include target="./common_footer.html" />