mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-05 17:51:40 +09:00
added the mobile skin setting in member configuration. git-svn-id: http://xe-core.googlecode.com/svn/branches/luminous@11434 201d5d3c-b55e-5fd7-737f-ddc643e51545
44 lines
1.7 KiB
HTML
44 lines
1.7 KiB
HTML
<load target="./../../../../common/js/jquery.min.js" usecdn="true" index="-1000000" />
|
|
<load target="css/mlogin.css" usecdn="true" />
|
|
<div class="bd">
|
|
<div cond="$XE_VALIDATOR_MESSAGE" class="message {$XE_VALIDATOR_MESSAGE_TYPE}">
|
|
<p>{$XE_VALIDATOR_MESSAGE}</p>
|
|
</div>
|
|
<div class="hx h2">
|
|
<h2>{$lang->cmd_login}</h2>
|
|
</div>
|
|
<form action="./" method="POST" class="ff">
|
|
<input type="hidden" name="module" value="member" />
|
|
<input type="hidden" name="act" value="procMemberLogin" />
|
|
<input type="hidden" name="redirect_url" value="{getUrl('act','')}" />
|
|
<ul>
|
|
<li><label for="id"><!--@if($identifier == 'user_id')-->{$lang->user_id}<!--@else-->{$lang->email_address}<!--@end--></label><input name="user_id" type="text" id="id" value="" /></li>
|
|
<li><label for="pw">{$lang->password}</label><input name="password" type="password" id="pw" value="" /></li>
|
|
</ul>
|
|
<div class="message info" id="keep_msg" style="display:none;">
|
|
<p>{$lang->about_keep_warning}</p>
|
|
</div>
|
|
<div class="bna">
|
|
<div class="fl"><input name="keep_signed" type="checkbox" value="Y" id="autoLogin" /> <label for="autoLogin">{$lang->keep_signed}</label></div>
|
|
<div class="fr"><button type="submit" class="bn dark">{$lang->cmd_login}</button></div>
|
|
</div>
|
|
<ul class="hp">
|
|
<li><a href="{getUrl('','act','dispMemberFindAccount')}"><span>{$lang->cmd_find_member_account}</span></a></li>
|
|
<li><a href="{getUrl('','act','dispMemberSignUpForm')}"><span>{$lang->cmd_signup}</span></a></li>
|
|
</ul>
|
|
</form>
|
|
</div>
|
|
|
|
<script>
|
|
jQuery(function($){
|
|
var keep_msg = $('#keep_msg');
|
|
keep_msg.hide();
|
|
$('#autoLogin').change(function(){
|
|
if($(this).is(':checked')){
|
|
keep_msg.slideDown(200);
|
|
} else {
|
|
keep_msg.slideUp(200);
|
|
}
|
|
});
|
|
});
|
|
</script>
|