<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> | |