
­­­­­­­­­­­­­­­­­­
<!DOCTYPE html>
<html>
<?php
include "landing_api.php";
is_logged_in();

//print_r($_SESSION);

?>
<!DOCTYPE html>
<html lang="en">
<head>
  <title>Funland | Everyone is winner</title>
  <meta charset="utf-8">
  <meta name="viewport" content="width=device-width, initial-scale=1">
  <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css">
  <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
  <script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.16.0/umd/popper.min.js"></script>
  <script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js"></script>

<style>
body{
 background-color: #cccccc; 
  background-repeat: no-repeat; /* Do not repeat the image */
  background-size: cover; /* Resize the background image to cover the entire container */
}

.input-kd{
    border: 3px solid #fff;
    border-radius: 23px;
    background-image: linear-gradient(to right,#E6E6E6, #fff);
    box-shadow: 0px 0px 4px 4px #2dbdbb;
}
.error{
    border: 3px solid red !important;
   /* background-image: linear-gradient(to right,red, red) !important; */
}

.label-kd{
color: red;
}
.fl-right{
    float: right;
}


    
</style> 

</head>
<body>

<?php
include 'nav.php';

?>

<div class="container">
    
<div style="height:64px;"></div>
<div style="height:64px;"></div>
<div style="height:64px;"></div>

<form action="search.php" method="GET">

<div class="form-group">
    <label for="voucher" class="label-kd">Voucher</label>
    <input type="text" class="form-control input-kd" name="voucher" id="voucher" autofocus>

  </div>
  
<div class="form-group">
    <input type="submit" class="form-control" value="Search">

  </div>  
 
</form>  
  
    
</div>      
      
</body>
</html>