mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-07 02:31:40 +09:00
git-svn-id: http://xe-core.googlecode.com/svn/branches/maserati@12575 201d5d3c-b55e-5fd7-737f-ddc643e51545
52 lines
1.9 KiB
HTML
52 lines
1.9 KiB
HTML
<include target="./common_header.html" />
|
|
<load target="filter/openid_login.xml" />
|
|
<div class="signin">
|
|
<div class="login-header">
|
|
<h1><i class="icon-user"></i> {$lang->cmd_login}</h1>
|
|
</div>
|
|
<div class="login-body">
|
|
<div cond="$XE_VALIDATOR_MESSAGE" class="message {$XE_VALIDATOR_MESSAGE_TYPE}">
|
|
<p>{$XE_VALIDATOR_MESSAGE}</p>
|
|
</div>
|
|
<form ruleset="@login" action="./" method="post" id="fo_member_login">
|
|
<input type="hidden" name="success_return_url" value="{$referer_url}" />
|
|
<input type="hidden" name="act" value="procMemberLogin" />
|
|
<fieldset>
|
|
<div class="control-group">
|
|
<input type="text" cond="$identifier == 'user_id'" name="user_id" id="uid" required placeholder="{$lang->user_id}" title="{$lang->user_id}" />
|
|
<input type="email" cond="$identifier != 'user_id'" name="user_id" id="uid" required placeholder="{$lang->email_address}" title="{$lang->email_address}" />
|
|
<input type="password" name="password" id="upw" required placeholder="{$lang->password}" title="{$lang->password}" />
|
|
</div>
|
|
<div class="control-group">
|
|
<label for="keepid_opt">
|
|
<input type="checkbox" name="keep_signed" id="keepid_opt" value="Y" />
|
|
{$lang->keep_signed}
|
|
</label>
|
|
<div id="warning">
|
|
<p>{$lang->about_keep_warning}</p>
|
|
</div>
|
|
<input type="submit" value="{$lang->cmd_login}" class="submit btn btn-inverse" />
|
|
</div>
|
|
</fieldset>
|
|
</form>
|
|
</div>
|
|
<div class="login-footer">
|
|
<a href="{getUrl('act','dispMemberFindAccount')}">{$lang->cmd_find_member_account}</a>
|
|
|
|
|
<a href="{getUrl('act','dispMemberSignUpForm')}">{$lang->cmd_signup}</a>
|
|
</div>
|
|
</div>
|
|
<script>
|
|
jQuery(function($){
|
|
var keep_msg = $('#warning');
|
|
keep_msg.hide();
|
|
$('#keepid_opt').change(function(){
|
|
if($(this).is(':checked')){
|
|
keep_msg.slideDown(200);
|
|
} else {
|
|
keep_msg.slideUp(200);
|
|
}
|
|
});
|
|
});
|
|
</script>
|
|
<include target="./common_footer.html" />
|