PHP Classes

File: sign_up

Recommend this page to a friend!
  Classes of johno dread   Yahoo MSN chat   sign_up   Download  
File: sign_up
Role: Auxiliary script
Content type: text/plain
Description: index file. Make site users using this form
Class: Yahoo MSN chat
Determine if Yahoo or MSN users are online
Author: By
Last change:
Date: 13 years ago
Size: 812 bytes
 

Contents

Class file image Download
<?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">&nbsp;</td><td><input type = "submit" value="Register"/></td></tr>
          </table>
     </form>
        </fieldset>


</center>