iuliaa

login.php

Oct 17th, 2020
241
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 2.26 KB | None | 0 0
  1. <?php include('server.php') ?>
  2. <!DOCTYPE html>
  3. <html>
  4.     <head>
  5.         <link rel="stylesheet" href="styles.css">
  6.         <link href="https://fonts.googleapis.com/css2?family=Roboto+Condensed:wght@300;400;700&display=swap" rel="stylesheet">
  7.         <script src="https://kit.fontawesome.com/b28a5ee64c.js" crossorigin="anonymous"></script>
  8.     </head>
  9.     <title>Safe Flight</title>
  10.     <header>
  11.     <div id="wrap">
  12.             <img src="images/plane_logo.png" height=125px>
  13.             <img src="images/text_logo.png" height=125px>
  14.             <a href="register.php"><button> Log In / Register </button></a>
  15.     </div>
  16.     </header>
  17.     <body>
  18.         <div class="menu">
  19.             <nav>
  20.                 <ul>
  21.                     <li><a href="index.html"> Home </a></li>
  22.                     <li><a href="#flights"> Flights and Reservations <i class="fas fa-caret-down"></i> </a>
  23.                         <ul>
  24.                             <li><a href="#book"> Book a Flight </a></li>
  25.                             <li><a href="#howself"> How to Self Check-In </a></li>
  26.                             <li><a href="#checkin"> Check-In </a></li>
  27.                             <li><a href="#destinations"> Destinations </a></li>
  28.                             <li><a href="#splflights"> Special Flights </a></li>
  29.                         </ul>
  30.                     </li>
  31.                     <li><a href="#info"> Useful Information <i class="fas fa-caret-down"></i> </a>
  32.                         <ul>
  33.                             <li><a href="#luggage"> Luggage </a></li>
  34.                             <li><a href="#facilities"> Flight Facilities </a></li>
  35.                             <li><a href="#bflight"> Business Flights </a></li>
  36.                             <li><a href="#eflight"> Economy Flights </a></li>
  37.                             <li><a href="#companies"> Information for Companies </a></li>
  38.                         </ul>
  39.                     </li>
  40.                     <li><a href="#loyalty"> Loyalty Programme <i class="fas fa-caret-down"></i> </a>
  41.                         <ul>
  42.                             <li><a href="#whyapply"> Why to Apply </a></li>
  43.                             <li><a href="#applform"> Application Form </a></li>
  44.                         </ul>
  45.                     </li>
  46.                 </ul>
  47.             </nav>
  48.         </div>
  49.        
  50.         <div class="login_form">
  51.             <form action="login.php" method="post">
  52.                
  53.                 <div>
  54.                     <label for="username"> Username: </label>
  55.                     <input type="text" name="username" required>
  56.                 </div>
  57.                
  58.                 <div>
  59.                     <label for="password"> Password: </label>
  60.                     <input type="text" name="pwd1" required>
  61.                 </div>
  62.                
  63.                 <button type="submit" name="login_user"> Log In </button>
  64.                
  65.                 <p><a href="register.php"> Don't have an account? Sign Up! </a></p>
  66.                
  67.             </form>
  68.         </div>
  69.     </body>
  70. </html>
Add Comment
Please, Sign In to add comment