nagasurendra commited on
Commit
eb297f7
·
verified ·
1 Parent(s): 3ad0fe9

Create templates/index.html

Browse files
Files changed (1) hide show
  1. templates/index.html +24 -0
templates/index.html ADDED
@@ -0,0 +1,24 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
+ <link rel="stylesheet" href="static/css/styles.css">
7
+ <script src="static/js/scripts.js" defer></script>
8
+ <title>Restaurant Ordering System</title>
9
+ </head>
10
+ <body>
11
+ {% include 'components/header.html' %}
12
+
13
+ <main>
14
+ <h1>Welcome to the Restaurant Ordering System</h1>
15
+ <p>Select an option from the navigation menu to get started:</p>
16
+ <ul>
17
+ <li><a href="/menu">View Menu</a></li>
18
+ <li><a href="/orders">View Your Orders</a></li>
19
+ </ul>
20
+ </main>
21
+
22
+ {% include 'components/footer.html' %}
23
+ </body>
24
+ </html>