Advertisement
faizulclass

login.php

Nov 7th, 2024 (edited)
31
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 1.37 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4.     <meta charset="UTF-8">
  5.     <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6.     <title>Login</title>
  7.     <link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css">
  8. </head>
  9. <body>
  10. <?php
  11.  
  12. // Include header
  13. include('header.php');
  14. ?>
  15.     <div class="container">
  16.         <div class="row justify-content-center mt-5">
  17.             <div class="col-md-4">
  18.                 <h2>Login</h2>
  19.                  
  20.                 <form method="POST" action="login.php">
  21.                     <div class="form-group">
  22.                         <label for="username">Username:</label>
  23.                         <input type="text" name="username" id="username" class="form-control" required>
  24.                     </div>
  25.                     <div class="form-group">
  26.                         <label for="password">Password:</label>
  27.                         <input type="password" name="password" id="password" class="form-control" required>
  28.                     </div>
  29.                     <button type="submit" class="btn btn-primary">Login</button>
  30.                 </form>
  31.                 <p class="mt-3">Don't have an account? <a href="register.php">Register here</a>.</p>
  32.             </div>
  33.         </div>
  34.     </div>
  35.     <?php
  36. // Include footer
  37. include('footer.php');
  38. ?>
  39. </body>
  40. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement