noordean

register_html.php

Sep 29th, 2016
25
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.74 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4.     <title>Simple Forum</title>
  5. </head>
  6. <body>
  7.     <form method="post" action="register_html.php">
  8.     <h2>Registration</h2>
  9.     <?php
  10.     require_once('register.php');
  11.     ?>
  12.         <table>
  13.             <tr>
  14.                 <td>Email</td>
  15.                 <td><input type="text" name="email"></td>
  16.             </tr>
  17.             <tr>
  18.                 <td>Username</td>
  19.                 <td><input type="text" name="username"></td>
  20.             </tr>
  21.             <tr>
  22.                 <td>Password</td>
  23.                 <td><input type="text" name="password1"></td>
  24.             </tr>
  25.             <tr>
  26.                 <td>Re-type Password</td>
  27.                 <td><input type="text" name="password"></td>
  28.             </tr>
  29.             <tr>
  30.                 <td><input type="submit" name="submit" value="Submit"></td>
  31.             </tr>
  32.         </table>
  33.     </form>
  34.     <a href="login_html.php">Click here to login</a>
  35. </body>
  36. </html>
Add Comment
Please, Sign In to add comment