DavidWel

login.php

Jan 21st, 2018
289
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.75 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>Login</h2>
  11.   </div>
  12.      
  13.   <form method="post" action="login.php">
  14.     <?php include('errors.php'); ?>
  15.     <div class="input-group">
  16.         <label>Username</label>
  17.         <input type="text" name="username" >
  18.     </div>
  19.     <div class="input-group">
  20.         <label>Password</label>
  21.         <input type="password" name="password">
  22.     </div>
  23.     <div class="input-group">
  24.         <button type="submit" class="btn" name="login_user">Login</button>
  25.     </div>
  26.     <p>
  27.         Not yet a member? <a href="register.php">Sign up</a>
  28.     </p>
  29.   </form>
  30. </body>
  31. </html>
Advertisement
Add Comment
Please, Sign In to add comment