DavidWel

register.php

Jan 21st, 2018
259
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 1.05 KB | None | 0 0
  1. <?php include('server.php') ?>
  2. <!DOCTYPE html>
  3. <html>
  4. <head>
  5.   <title>Registration system PHP and MySQL</title>
  6.   <link rel="stylesheet" type="text/css" href="style.css">
  7. </head>
  8. <body>
  9.   <div class="header">
  10.     <h2>Register</h2>
  11.   </div>
  12.    
  13.   <form method="post" action="register.php">
  14.     <?php include('errors.php'); ?>
  15.     <div class="input-group">
  16.       <label>Username</label>
  17.       <input type="text" name="username" value="<?php echo $username; ?>">
  18.     </div>
  19.     <div class="input-group">
  20.       <label>Email</label>
  21.       <input type="email" name="email" value="<?php echo $email; ?>">
  22.     </div>
  23.     <div class="input-group">
  24.       <label>Password</label>
  25.       <input type="password" name="password_1">
  26.     </div>
  27.     <div class="input-group">
  28.       <label>Confirm password</label>
  29.       <input type="password" name="password_2">
  30.     </div>
  31.     <div class="input-group">
  32.       <button type="submit" class="btn" name="reg_user">Register</button>
  33.     </div>
  34.     <p>
  35.         Already a member? <a href="login.php">Sign in</a>
  36.     </p>
  37.   </form>
  38. </body>
  39. </html>
Advertisement
Add Comment
Please, Sign In to add comment