git-svn-id: http://xe-core.googlecode.com/svn/trunk@1066 201d5d3c-b55e-5fd7-737f-ddc643e51545

This commit is contained in:
zero 2007-04-10 05:49:40 +00:00
parent 4addc42763
commit 749344c453
9 changed files with 155 additions and 53 deletions

View file

@ -1,13 +1,16 @@
<!--%import("filter/login.xml")-->
<!--%import("js/member.js")-->
<form action="./" method="post" onsubmit="return procFilter(this, login)">
<form action="./" method="post" onsubmit="return procFilter(this, login)" id="fo_member_login">
<table>
<col width="120" />
<col width="*" />
<tr>
<th>{$lang->user_id}</th>
<td><input type="text" name="user_id" id="member_login_user_id" /></td>
<th rowspan="2">{$lang->user_id}</th>
<td><input type="text" name="user_id" /></td>
</tr>
<tr>
<td><input type="checkbox" name="remember_user_id" value="Y" /> {$lang->remember_user_id}</td>
</tr>
<tr>
<th>{$lang->password}</th>
@ -29,5 +32,5 @@
</form>
<script type="text/javascript">
xAddEventListener(window, "load", function() { xGetElementById("member_login_user_id").focus(); } );
xAddEventListener(window, "load", function() { doFocusUserId('fo_member_login'); });
</script>