mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-19 19:29:56 +09:00
54 lines
1.7 KiB
HTML
54 lines
1.7 KiB
HTML
<!--%import("filter/login.xml")-->
|
|
<!--%import("filter/openid_login.xml")-->
|
|
|
|
<!--%import("js/member.js")-->
|
|
<!--%import("css/module.css")-->
|
|
|
|
<!-- 제로보드XE 로그인 폼 -->
|
|
<form action="./" method="post" onsubmit="return procFilter(this, login)" id="fo_member_login">
|
|
<table border="1">
|
|
<col width="120" />
|
|
<col width="*" />
|
|
<tr>
|
|
<th rowspan="2">{$lang->user_id}</th>
|
|
<td><input type="text" name="user_id" tabindex="1" /></td>
|
|
</tr>
|
|
<tr>
|
|
<td><input type="checkbox" name="remember_user_id" value="Y" tabindex="4" /> {$lang->remember_user_id}</td>
|
|
</tr>
|
|
<tr>
|
|
<th>{$lang->password}</th>
|
|
<td><input type="password" name="password" value="" tabindex="2" /></td>
|
|
</tr>
|
|
<tr>
|
|
<td colspan="2">
|
|
<input type="submit" value="{$lang->cmd_login}" tabindex="3" />
|
|
<input type="button" value="{$lang->cmd_cancel}" onclick="location.href='{getUrl('act','')}'" />
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td colspan="2">
|
|
<a href="#" onclick="location.href='{getUrl('act','dispMemberSignUpForm')}'">{$lang->cmd_signup}</a>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
</form>
|
|
|
|
<!-- OpenID -->
|
|
<form action="./" method="post" onsubmit="return procFilter(this, openid_login)">
|
|
<table border="1">
|
|
<tr>
|
|
<th>{$lang->openid}</th>
|
|
</tr>
|
|
<tr>
|
|
<td>
|
|
<input type="text" name="user_id" tabindex="1" class="openid_user_id" />
|
|
<input type="submit" value="{$lang->cmd_login}" tabindex="2" />
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
</form>
|
|
|
|
<script type="text/javascript">
|
|
xAddEventListener(window, "load", function() { doFocusUserId('fo_member_login'); });
|
|
</script>
|