Advertisement
Guest User

Untitled

a guest
Sep 13th, 2017
128
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.79 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4.     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  5.     <title>Signup Form</title>
  6. </head>
  7. <body>
  8.  
  9. <div id="signup_form">
  10.  
  11.     <p class="heading">New User Signup</p>
  12.  
  13.     <?php echo form_open('signup/submit'); ?>
  14.  
  15.     <p>
  16.         <label for="username">Username: </label>
  17.         <?php echo form_input('username'); ?>
  18.     </p>
  19.     <p>
  20.         <label for="password">Password: </label>
  21.         <?php echo form_password('password'); ?>
  22.     </p>
  23.     <p>
  24.         <label for="passconf">Confirm Password: </label>
  25.         <?php echo form_password('passconf'); ?>
  26.     </p>
  27.     <p>
  28.         <label for="email">E-mail: </label>
  29.         <?php echo form_input('email'); ?>
  30.     </p>
  31.     <p>
  32.         <?php echo form_submit('submit','Create my account'); ?>
  33.     </p>
  34.  
  35.     <?php echo form_close(); ?>
  36. </div>
  37.  
  38. </body>
  39. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement