
<%
'list vars to pass as hidden fields so will be passed back to calling form
eventno 		= request("eventno")
submitpage 	= Request.ServerVariables( "SCRIPT_NAME" )
%>

<html>
<head>
<title>Login</title>
<style><% defstyles %></style>
</head>

<center>
<h1>Member Login</h1>

<p>Please enter your member id then press Login</p>

<form method="post" action="bkitlogin2.asp?calledfrom=<%=submitpage%>">
  <table width="35%" border=1 cellpadding=5 cellspacing=0>
    <tr>
      <td width="125" bgcolor="#000080" align="center"><b><font color="#FFFFFF">Member ID</font></b></td>
      <td width="103" bgcolor="#FFF0E1" align="center">
		  <input name="getref" size="10">
		  <input name="eventno" type="hidden" value="<%= eventno%>">	  
      </td>
    </tr>
  </table>
  <p><input type="checkbox" name="cremember" value="ON">Remember Me</p>
  <p>
  Note - tick 'remember me' to save a cookie to your hard<br>
  disk to remember you next time you visit this area
  </p>
  <% ' if test on IS web site then display test numbers %>
  <% if fileexists("test.txt") then %>
	  <p><font color="#FF0000">(use ids 002496, 003442 and 003741 for testing purposes!)</font></p>
  <% end if %>
  <p><input type="submit" value="   Login   "></p>
</form>

<% pagefooter %>