<?php include('server.php') ?>
<!DOCTYPE html>
<html>
<head>
  <title>Registration system PHP and MySQL</title>
  <link href="https://fonts.googleapis.com/css?family=Rajdhani:300,400,500,600,700" rel="stylesheet">

<meta name="viewport" content="width=device-width, initial-scale=1">
  
  <link rel='stylesheet prefetch' href='https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.3.7/css/bootstrap.min.css'>
  <link rel="stylesheet" type="text/css" href="css_self/login.css">
</head>
<body>
  <nav class="navbar navbar-fixed-top navbar-inverse">
   
   <div class="container">
     <div class="navbar-header">
       <button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navbar-collapse">
         <span class="sr-only">Toggle navigation</span>
         <span class="icon-bar"></span>
         <span class="icon-bar"></span>
         <span class="icon-bar"></span>
       </button>
       <a class="navbar-brand" href="index.html">The Royal Cuisine</a>
     </div>
     <div class="collapse navbar-collapse" id="navbar-collapse">
       <ul class="nav navbar-nav navbar-right">
         <li><a href="index.html">Home</a></li>
         <li><a href="about.html">About</a></li>
         <li><a href="rating.php">Contact</a></li>
         <li><a href="menu.html">Menu</a></li>
         <li><a href="recipe.html">Recipes</a></li>
         <li><a href="play.html">Play Games</a></li>
         <li class="active"><a href="login.php">Sign Up</a></li>
       </ul>
     </div>
   </div>
 </nav>
 <br><br><br><br><br><br><br><br><br>
  <div class="header">
    <h2>Login</h2>
  </div>
   
  <form method="post" action="login.php">
    <?php include('errors.php'); ?>
    <div class="input-group">
      <label>Username</label>
      <input type="text" name="username" >
    </div>
    <div class="input-group">
      <label>Password</label>
      <input type="password" name="password">
    </div>
    <div class="input-group">
      <button type="submit" class="btn" name="login_user">Login</button>
    </div>
    <p>
      Not yet a member? <a href="register.php">Sign up</a>
    </p>
  </form>
<br><br><br><br>
  <footer>
      <p>
        <b>The restaurant is open continuously throughout the day, serving breakfast, lunch, weekend brunch, dinner, and late night, as well as to-go coffee. <br>contact me at
Email: <a href="rating.php" >TheRoyalCuisine9@gmail.com</a>

skype: <font color="white">TheRoyalCuisine</font>
      </b></p>
</footer> 


</body>
</html>
