mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-14 00:39:57 +09:00
29 lines
787 B
HTML
29 lines
787 B
HTML
<!--%import("filter/login.xml")-->
|
|
<!--%import("js/admin.js")-->
|
|
|
|
<form action="./" method="get" onsubmit="return procFilter(this, login)">
|
|
<input type="hidden" name="sid" value="{$sid}" />
|
|
<table>
|
|
<col width="120" />
|
|
<col width="*" />
|
|
<tr>
|
|
<th>{$lang->user_id}</th>
|
|
<td><input type="text" name="user_id" id="user_id" /></td>
|
|
</tr>
|
|
<tr>
|
|
<th>{$lang->password}</th>
|
|
<td><input type="password" name="password" value="" /></td>
|
|
</tr>
|
|
<tr>
|
|
<td colspan="2">
|
|
<input type="button" value="{$lang->cmd_cancel}" onclick="location.href='{getUrl('act','')}'" />
|
|
<input type="submit" value="{$lang->cmd_login}" />
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
|
|
</form>
|
|
|
|
<script type="text/javascript">
|
|
xAddEventListener(window, 'load', doAdminLoginFocus);
|
|
</script>
|