mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-05-04 17:44:38 +09:00
Remove find account by question
This commit is contained in:
parent
d47aea0aba
commit
f02b70afb5
15 changed files with 13 additions and 328 deletions
|
|
@ -1,14 +0,0 @@
|
|||
<filter name="find_member_account_by_question" module="member" act="procMemberFindAccountByQuestion">
|
||||
<form>
|
||||
<node target="user_id" required="true" />
|
||||
<node target="email_address" required="true" minlength="2" maxlength="255" filter="email" />
|
||||
<node target="find_account_question" required="true" />
|
||||
<node target="find_account_answer" required="true" maxlength="250" />
|
||||
</form>
|
||||
<parameter />
|
||||
<response callback_func="completeFindMemberAccountByQuestion">
|
||||
<tag name="error" />
|
||||
<tag name="message" />
|
||||
<tag name="user_id" />
|
||||
</response>
|
||||
</filter>
|
||||
|
|
@ -19,41 +19,6 @@
|
|||
</div>
|
||||
</form>
|
||||
</section>
|
||||
<hr cond="count($lang->find_account_question_items)>1 && $enable_find_account_question == 'Y'">
|
||||
<section cond="count($lang->find_account_question_items)>1 && $enable_find_account_question == 'Y'">
|
||||
<h1>{$lang->cmd_find_member_account_with_email_question}</h1>
|
||||
<p>{$lang->about_find_account_question}</p>
|
||||
<div cond="$XE_VALIDATOR_MESSAGE && $XE_VALIDATOR_ID == 'modules/member/skin/default/find_member_account/2'" class="message {$XE_VALIDATOR_MESSAGE_TYPE}">
|
||||
<p>{$XE_VALIDATOR_MESSAGE}</p>
|
||||
</div>
|
||||
<form action="{getUrl('', 'act', 'procMemberFindAccountByQuestion')}" method="post" ruleset="@find_member_account_by_question">
|
||||
<input type="hidden" name="module" value="member" />
|
||||
<input type="hidden" name="mid" value="{$mid}" />
|
||||
<input type="hidden" name="document_srl" value="{$document_srl}" />
|
||||
<input type="hidden" name="act" value="procMemberFindAccountByQuestion" />
|
||||
<input type="hidden" name="success_return_url" value="{getUrl('', 'act', 'dispMemberGetTempPassword')}" />
|
||||
<input type="hidden" name="page" value="{$page}" />
|
||||
<input type="hidden" name="xe_validator_id" value="modules/member/skin/default/find_member_account/2" />
|
||||
<div>
|
||||
<input type="text" name="user_id" required placeholder="{$lang->user_id}" title="{$lang->user_id}" cond="$identifier == 'user_id'" />
|
||||
</div>
|
||||
<div>
|
||||
<input type="email" name="email_address" required placeholder="{$lang->email_address}" title="{$lang->email_address}" />
|
||||
</div>
|
||||
<div>
|
||||
<select name="find_account_question">
|
||||
<!--@for($i=1,$c=count($lang->find_account_question_items);$i<=$c;$i++)-->
|
||||
<option value="{$i}">{$lang->find_account_question_items[$i]}</option>
|
||||
<!--@end-->
|
||||
</select>
|
||||
</div>
|
||||
<div>
|
||||
<input type="text" name="find_account_answer" value="" required placeholder="{$lang->find_account_question}" title="{$lang->find_account_question}" />
|
||||
</div>
|
||||
<block cond="$captcha">{$captcha}<br /></block>
|
||||
<input type="submit" class="btn btn-inverse" value="{$lang->cmd_get_temp_password}" style="min-width:220px" />
|
||||
</form>
|
||||
</section>
|
||||
<hr>
|
||||
<section>
|
||||
<h1>{$lang->cmd_resend_auth_mail}</h1>
|
||||
|
|
|
|||
|
|
@ -1,6 +0,0 @@
|
|||
<include target="./common_header.html" />
|
||||
<h1>{$lang->cmd_find_member_account}</h1>
|
||||
<p>{$lang->about_temp_password}</p>
|
||||
<p>{$lang->user_id}: {$user_id}</p>
|
||||
<p>{$lang->temp_password}: {$temp_password}</p>
|
||||
<include target="./common_footer.html" />
|
||||
|
|
@ -23,49 +23,6 @@
|
|||
</div>
|
||||
</form>
|
||||
</section>
|
||||
<section class="sw-body" cond="count(lang('member.find_account_question_items'))>1 && $enable_find_account_question == 'Y'">
|
||||
<h1>{$lang->cmd_find_member_account_with_email_question}</h1>
|
||||
<div cond="$XE_VALIDATOR_MESSAGE && $XE_VALIDATOR_ID == 'modules/member/skin/simple_world/find_member_account/2'" 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/2'" class="rx_member-notice">
|
||||
{lang('member.about_find_account_question')}
|
||||
</p>
|
||||
<form action="{getUrl('', 'act', 'procMemberFindAccountByQuestion')}" method="post" ruleset="@find_member_account_by_question">
|
||||
<input type="hidden" name="module" value="member" />
|
||||
<input type="hidden" name="mid" value="{$mid}" />
|
||||
<input type="hidden" name="document_srl" value="{$document_srl}" />
|
||||
<input type="hidden" name="act" value="procMemberFindAccountByQuestion" />
|
||||
<input type="hidden" name="success_return_url" value="{getUrl('', 'act', 'dispMemberGetTempPassword')}" />
|
||||
<input type="hidden" name="page" value="{$page}" />
|
||||
<input type="hidden" name="xe_validator_id" value="modules/member/skin/simple_world/find_member_account/2" />
|
||||
<div class="control-group">
|
||||
<label for="user_id" cond="$identifier == 'user_id'">
|
||||
{lang('common.user_id')}
|
||||
</label>
|
||||
<input type="text" name="user_id" id="user_id" required title="{lang('common.user_id')}" cond="$identifier == 'user_id'" />
|
||||
<label for="email_address2">
|
||||
{lang('common.email_address')}
|
||||
</label>
|
||||
<input type="email" name="email_address" id="email_address2" required title="{lang('common.email_address')}" />
|
||||
<label for="find_account_question">
|
||||
{lang('member.find_account_question')}
|
||||
</label>
|
||||
<select name="find_account_question" id="find_account_question">
|
||||
<!--@for($i=1,$c=count(lang('member.find_account_question_items'));$i<=$c;$i++)-->
|
||||
<option value="{$i}">{lang('member.find_account_question_items')[$i]}</option>
|
||||
<!--@end-->
|
||||
</select>
|
||||
</div>
|
||||
<div class="control-group">
|
||||
<input type="text" name="find_account_answer" value="" required title="{lang('member.find_account_question')}" />
|
||||
</div>
|
||||
<div class="control-group">
|
||||
<block cond="$captcha">{$captcha}<br /></block>
|
||||
<input type="submit" value="{lang('member.cmd_get_temp_password')}" />
|
||||
</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}">
|
||||
|
|
|
|||
|
|
@ -1,12 +0,0 @@
|
|||
<include target="./common_header.html" />
|
||||
<section class="sw-body">
|
||||
<h1>{lang('member.cmd_find_member_account')}</h1>
|
||||
<div class="rx_member-notice">{lang('member.about_temp_password')}</div>
|
||||
<dl>
|
||||
<dt>{lang('common.user_id')}</dt>
|
||||
<dd>{$user_id}</dd>
|
||||
<dt>{lang('member.temp_password')}</dt>
|
||||
<dd>{$temp_password}</dd>
|
||||
</dl>
|
||||
</section>
|
||||
<include target="./common_footer.html" />
|
||||
Loading…
Add table
Add a link
Reference in a new issue