File size: 712 Bytes
eb297f7
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <link rel="stylesheet" href="static/css/styles.css">
    <script src="static/js/scripts.js" defer></script>
    <title>Restaurant Ordering System</title>
</head>
<body>
    {% include 'components/header.html' %}

    <main>
        <h1>Welcome to the Restaurant Ordering System</h1>
        <p>Select an option from the navigation menu to get started:</p>
        <ul>
            <li><a href="/menu">View Menu</a></li>
            <li><a href="/orders">View Your Orders</a></li>
        </ul>
    </main>

    {% include 'components/footer.html' %}
</body>
</html>