<!DOCTYPE html>
<html lang="en">
<head>
	<meta charset="utf-8">
	<?php 
include "./include/header.php";
?>
	<title>Restaurant Finder</title>
</head>
<body>
	<?php 
include "./include/navbar.php";
?>
	<div class="container" style="margin-top:100px;margin-bottom:50px;min-height:500px">
		<?php 
if ($session->session_exist('user_type')) {
    ?>
			<?php 
    if ($session->get_session_data('user_type') == 'user') {
        ?>

			<table class="table table-striped table-hover"> 
				<thead> 
					<tr> 
						<th>Order ID</th> 
						<th>Detail</th> 
						<th>Total</th> 
						<th>status</th> 
					</tr> 
				</thead> 
				<tbody>