mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-28 23:59:57 +09:00
49 lines
No EOL
2.6 KiB
HTML
49 lines
No EOL
2.6 KiB
HTML
<include target="./common_header.html" />
|
|
<section class="sw-body">
|
|
<h1>{lang('member.cmd_find_member_account_with_email')}</h1>
|
|
<div cond="$XE_VALIDATOR_MESSAGE && $XE_VALIDATOR_ID == 'modules/member/skin/simple_world/find_member_account/1'" class="rx_member-notice {$XE_VALIDATOR_MESSAGE_TYPE}">
|
|
<p>{$XE_VALIDATOR_MESSAGE}</p>
|
|
</div>
|
|
<p cond="!$XE_VALIDATOR_MESSAGE || $XE_VALIDATOR_ID !== 'modules/member/skin/simple_world/find_member_account/1'" class="rx_member-notice">
|
|
{lang('member.about_find_member_account')}
|
|
</p>
|
|
<form action="{getUrl('', 'act', 'procMemberFindAccount')}" method="post" ruleset="findAccount">
|
|
<input type="hidden" name="mid" value="{$mid}" />
|
|
<input type="hidden" name="act" value="procMemberFindAccount" />
|
|
<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/skin/simple_world/find_member_account/1" />
|
|
<div class="control-group">
|
|
<label for="uid">
|
|
{lang('common.email_address')}
|
|
</label>
|
|
<input type="email" name="email_address" id="uid" required title="{lang('common.email_address')}" />
|
|
<block cond="$captcha">{$captcha}<br /></block>
|
|
<input type="submit" value="{lang('member.cmd_find_member_account')}" />
|
|
</div>
|
|
</form>
|
|
</section>
|
|
<section class="sw-body">
|
|
<h1>{lang('member.cmd_resend_auth_mail')}</h1>
|
|
<div cond="$XE_VALIDATOR_MESSAGE && $XE_VALIDATOR_ID == 'modules/member/skin/simple_world/find_member_account/3'" class="rx_member-notice {$XE_VALIDATOR_MESSAGE_TYPE}">
|
|
<p>{$XE_VALIDATOR_MESSAGE}</p>
|
|
</div>
|
|
<p cond="!$XE_VALIDATOR_MESSAGE || $XE_VALIDATOR_ID !== 'modules/member/skin/simple_world/find_member_account/3'" class="rx_member-notice">
|
|
{lang('member.about_resend_auth_mail')}
|
|
</p>
|
|
<form ruleset="resendAuthMail" action="{getUrl('', 'act', 'procMemberResendAuthMail')}" method="post">
|
|
<input type="hidden" name="module" value="member" />
|
|
<input type="hidden" name="act" value="procMemberResendAuthMail" />
|
|
<input type="hidden" name="success_return_url" value="{getUrl(act, $act)}" />
|
|
<input type="hidden" name="xe_validator_id" value="modules/member/skin/simple_world/find_member_account/3" />
|
|
<div class="control-group">
|
|
<label for="email_address3">
|
|
{lang('common.email_address')}
|
|
</label>
|
|
<input type="email" id="email_address3" name="email_address" value="" required title="{lang('common.email_address')}" /><br />
|
|
<block cond="$captcha">{$captcha}<br /></block>
|
|
<input type="submit" value="{lang('member.cmd_resend_auth_mail')}" />
|
|
</div>
|
|
</form>
|
|
</section>
|
|
<include target="./common_footer.html" /> |