<?php
$pagetitle="FoIKS 2004 Registration - Login";
require("header.php");
?>


<h2>Registration - Login</h2>

<p>If you did not register yet, do so at <a href="./">the registration page</a>.</p>

<form action=pay.php method=post>
<table bgcolor=#dddddd cellpadding=2 cellspacing=1 border=0>
  <tr>
    <td>First Name</td>
    <td><input type=text name=firstname size=30 maxlength=30
               <?php if( $firstname ) echo "value='".$firstname."'"; ?> ></td>
  </tr>
  <tr>
    <td>Last Name</td>
    <td><input type=text name=lastname size=30 maxlength=30
               <?php if( $lastname ) echo "value='".$lastname."'"; ?> ></td>
  </tr>
  <tr>
    <td>Password</td>
    <td><input type=password name=userpass size=30 maxlength=30></td>
  </tr>
</table>

<input type=submit value=Login>

</form>
<?php
require("footer.php");
?>









 
