mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-12 07:11:42 +09:00
변경전의 xe.less 파일도 rhymix.less와 함께 load 하여 호환정 유지
CSS 충돌 예)
bootstrap의 .btn
사용 예)
bootstrap 사용시엔 {Context::unloadBasicFiles('xe')}으로 unload 시키면 문제없음
31 lines
1.2 KiB
HTML
31 lines
1.2 KiB
HTML
<load target="css/msignup.css" />
|
|
<h2 class="hx h2">{$lang->msg_rechecked_password}</h2>
|
|
{@
|
|
$validator_ids = array(
|
|
'modules/member/m.skin/default/rechecked_password/1' => 1,
|
|
'modules/member/m.skin/default/modify_info/1' => 1
|
|
);
|
|
}
|
|
<div cond="$XE_VALIDATOR_MESSAGE && isset($validator_ids[$XE_VALIDATOR_ID])" class="rhymix_message {$XE_VALIDATOR_MESSAGE_TYPE}">
|
|
<p>{$XE_VALIDATOR_MESSAGE}</p>
|
|
</div>
|
|
<form class="ff" action="./index.php" method="post" ruleset="recheckedPassword">
|
|
<input type="hidden" name="act" value="procMemberModifyInfoBefore" />
|
|
<input type="hidden" name="module" value="member" />
|
|
<input type="hidden" name="xe_validator_id" value="modules/member/m.skin/default/rechecked_password/1" />
|
|
<ul>
|
|
<li>
|
|
<label for="identifier">{$identifierTitle}</label>
|
|
<p id="identifier">{$identifierValue}</p>
|
|
</li>
|
|
<li>
|
|
<label for="password">{$lang->password}</label>
|
|
<input id ="password" type="password" name="password" />
|
|
<p class="desc">{$lang->about_rechecked_password}</p>
|
|
</li>
|
|
</ul>
|
|
<div class="bna">
|
|
<input class="bn dark" type="submit" value="{$lang->cmd_confirm}" />
|
|
<span class="bn white"><a href="{getUrl('act','dispMemberInfo','member_srl','')}">{$lang->cmd_cancel}</a></span>
|
|
</div>
|
|
</form>
|