mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-05-22 05:15:29 +09:00
변경전의 xe.less 파일도 rhymix.less와 함께 load 하여 호환정 유지
CSS 충돌 예)
bootstrap의 .btn
사용 예)
bootstrap 사용시엔 {Context::unloadBasicFiles('xe')}으로 unload 시키면 문제없음
33 lines
1.9 KiB
HTML
33 lines
1.9 KiB
HTML
<load target="default.login.css" />
|
|
<load target="login.xml" />
|
|
<load target="default.login.js" />
|
|
<form id="fo_login_widget" action="{getUrl('','act','procMemberLogin')}" method="post" ruleset="@login" class="account">
|
|
<a href="#acField">{$lang->cmd_login}</a>
|
|
<fieldset id="acField">
|
|
<h2>{$lang->cmd_login}</h2>
|
|
<input type="hidden" name="act" value="procMemberLogin" />
|
|
<input type="hidden" name="success_return_url" value="{htmlspecialchars(getRequestUriByServerEnviroment(), ENT_COMPAT | ENT_HTML401, 'UTF-8', false)}" />
|
|
<input type="hidden" name="xe_validator_id" value="widgets/login_info/skins/default/login_form/1" />
|
|
<div cond="$XE_VALIDATOR_MESSAGE && $XE_VALIDATOR_ID == 'widgets/login_info/skins/default/login_form/1'" class="rhymix_message {$XE_VALIDATOR_MESSAGE_TYPE}">
|
|
<p>{$XE_VALIDATOR_MESSAGE}</p>
|
|
</div>
|
|
<div class="idpw">
|
|
<label for="user_id" cond="$member_config->identifier != 'email_address'">{$lang->user_id}</label>
|
|
<input name="user_id" id="user_id" type="text" required cond="$member_config->identifier != 'email_address'" />
|
|
<label for="user_id" cond="$member_config->identifier == 'email_address'">{$lang->email_address}</label>
|
|
<input name="user_id" id="user_id" type="email" required cond="$member_config->identifier == 'email_address'" />
|
|
<label for="user_pw">{$lang->password}</label>
|
|
<input name="password" id="user_pw" type="password" required />
|
|
<p class="keep">
|
|
<input type="checkbox" name="keep_signed" id="keep_signed" value="Y" />
|
|
<label for="keep_signed">{$lang->keep_signed}</label>
|
|
</p>
|
|
<p class="warning">{$lang->about_keep_warning}</p>
|
|
</div>
|
|
<input type="submit" value="{$lang->cmd_login}" />
|
|
<ul class="help">
|
|
<li><a href="{getUrl('act','dispMemberSignUpForm')}">{$lang->cmd_signup}</a></li>
|
|
<li><a href="{getUrl('act','dispMemberFindAccount')}">{$lang->cmd_find_member_account}</a></li>
|
|
</ul>
|
|
</fieldset>
|
|
</form>
|