<?php
 
 
/**
 
 
 * @copyright 2010
 
 */
 
 
 
 
?>
 
<style>
 
body
 
{
 
    margin:20px;    
 
}
 
hr
 
{
 
  width: 1px;
 
  color:#FFF;    
 
}
 
.fieldsCollection
 
{
 
    padding:5px;
 
}
 
</style>
 
<center>
 
    <h1>Register</h1>
 
 
        <fieldset id="personalFieldsCollection" class="fieldsCollection" >
 
      <form action="add_user.php" method="post">
 
          <table>
 
          <tr><td align="right">First Name:</td><td><input        type = "text" value=""    name="fname"/></td></tr>
 
          <tr><td align="right">Last Name:</td><td><input        type = "text" value=""     name="lname"/></td></tr>
 
          <tr><td align="right">Email Address:</td><td><input     type = "text" value=""    name="email"/></td></tr>
 
          <tr><td align="right"> </td><td><input             type = "submit" value="Register"/></td></tr>
 
          </table>
 
     </form>
 
        </fieldset>
 
 
 
</center>
 
 |