mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-14 00:39:57 +09:00
git-svn-id: http://xe-core.googlecode.com/svn/sandbox@5785 201d5d3c-b55e-5fd7-737f-ddc643e51545
65 lines
2.9 KiB
HTML
65 lines
2.9 KiB
HTML
<!--%import("message.css")-->
|
|
|
|
<div class="messageLayer">
|
|
<div class="messageLayerBody">
|
|
<h4> {$system_message} </h4>
|
|
<!--@if(!$is_logged)-->
|
|
<!--%import("./filter/login.xml")-->
|
|
<!--%import("./filter/openid_login.xml")-->
|
|
<!--%import("./message.js")-->
|
|
<script type="text/javascript">
|
|
var keep_signed_msg = "{$lang->about_keep_signed}";
|
|
xAddEventListener(window, "load", function(){ xGetElementById("messageLoginForm").user_id.focus(); });
|
|
</script>
|
|
<div class="messageLogin" id="messageLogin">
|
|
<form action="./" method="post" onsubmit="return procFilter(this, message_login)" id="messageLoginForm">
|
|
<fieldset class="login">
|
|
<dl>
|
|
<dt>
|
|
<label for="uid">{$lang->user_id}</label>
|
|
</dt>
|
|
<dd>
|
|
<input type="text" name="user_id" id="uid" value="" class="inputText" />
|
|
</dd>
|
|
<dt>
|
|
<label for="upw">{$lang->password}</label>
|
|
</dt>
|
|
<dd>
|
|
<input type="password" name="password" id="upw" value="" class="inputText" />
|
|
</dd>
|
|
</dl>
|
|
<p class="keep">
|
|
<input type="checkbox" name="keep_signed" id="keepid" value="Y" onclick="if(this.checked) return confirm(keep_signed_msg);" />
|
|
<label for="keepid">{$lang->keep_signed}</label>
|
|
<!--@if($member_config->enable_openid=='Y')-->
|
|
<input name="use_open_id" id="use_open_id" type="checkbox" value="Y" onclick="toggleLoginForm(this); return false;" />
|
|
<label for="use_open_id">Open ID</label>
|
|
<!--@end-->
|
|
</p>
|
|
<div class="buttonArea"> <span class="button black strong"><input type="submit" value="{$lang->cmd_login}" /></span> </div>
|
|
</fieldset>
|
|
</form>
|
|
<div class="help"> <a href="{getUrl('','act','dispMemberFindAccount')}"><span>{$lang->cmd_find_member_account}</span></a> | <a href="{getUrl('','act','dispMemberSignUpForm')}"><span>{$lang->cmd_signup}</span></a> </div>
|
|
</div>
|
|
<!-- OpenID -->
|
|
<!--@if($member_config->enable_openid=='Y')-->
|
|
<div class="messageLogin openid_login" id="messageOpenidLogin">
|
|
<form action="{getUrl('module','member','act','procMemberOpenIDLogin')}" method="post" onsubmit="return procFilter(this, openid_login)" id="messageOpenIDForm">
|
|
<div class="openIDTitle"> OpenID
|
|
<input type="text" name="openid" class="inputTypeText" />
|
|
<input name="use_open_id_2" type="checkbox" value="Y" onclick="toggleLoginForm(this); return false;" checked="checked" />
|
|
<span class="button black strong">
|
|
<input type="submit" value="{$lang->cmd_login}" />
|
|
</span> </div>
|
|
</form>
|
|
</div>
|
|
<!--@end-->
|
|
<!--@end-->
|
|
</div>
|
|
</div>
|
|
<div class="buttonArea">
|
|
<a href="#" onclick="history.back(); return false;" class="button black"><span>{$lang->cmd_back}</span></a>
|
|
<!--@if($is_logged)-->
|
|
<a href="{getUrl('act','dispMemberLogout')}" class="button red"><span>{$lang->cmd_logout}</span></a>
|
|
<!--@end-->
|
|
</div>
|