-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
31 lines (29 loc) · 1007 Bytes
/
index.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<?php
// Include the database connection
include 'includes/db.php';
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Restaurant Management System</title>
<link rel="stylesheet" href="css/style_index.css">
</head>
<body>
<div class="container">
<a href="pages/owner-login.php" class="login-option" id="owner-login">
<p class="text-item">Owner</p>
</a>
<a href="pages/manager-login.php" class="login-option" id="manager-login">
<p class="text-item">Manager</p>
</a>
<a href="pages/employee-login.php" class="login-option" id="employee-login">
<p class="text-item">Employee</p>
</a>
<a href="pages/customer-login.php" class="login-option" id="customer-login">
<p class="text-item">Customer</p>
</a>
</div>
</body>
</html>