Advertisement
Guest User

Untitled

a guest
May 25th, 2017
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 1.05 KB | None | 0 0
  1. <!-- Jenny Zhen -->
  2. <!DOCTYPE HTML>
  3. <html>
  4.     <head>
  5.         <title>User Registration</title>
  6.     </head>
  7.     <body style="text-align:center;font-family:tahoma;font-size:12px;background-color:#F5FFFF">
  8.     <h1>User Registration</h1>
  9.     <div align = "center">
  10.     <table style="text-align:center;background-color:#FFFFFF;border-style:solid;width:350px;" border="3">
  11.         <tr>
  12.             <td>
  13.                 <form method = "post" action = "userreg.php">
  14.                 <p>
  15.                     Username: <input type = "textbox" name = "username" /><br />
  16.                     Password: &nbsp;<input type = "textbox" name = "password" /><br />
  17.                     First Name: <input type = "textbox" name = "firstName" /><br />
  18.                     Last Name: <input type = "textbox" name = "lastName" /><br />
  19.                     Your Email: <input type = "textbox" name = "email" /><br />
  20.                     Gender: <input type = "radio" name = "gender" value = "Female" checked = "checked" />Female
  21.                             <input type = "radio" name = "gender" value = "Male" />Male
  22.                     <br /><br /><input type = "submit" value = "Submit">
  23.                 </p>
  24.                 </form>
  25.             </td>
  26.         </tr>
  27.     </table>
  28.     </div>
  29.     </body>
  30. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement