Spaces:
Sleeping
Sleeping
Create dashboard.html
Browse files- templates/dashboard.html +13 -0
templates/dashboard.html
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 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 |
+
<title>Dashboard</title>
|
| 7 |
+
</head>
|
| 8 |
+
<body>
|
| 9 |
+
<h1>Welcome to the Dashboard</h1>
|
| 10 |
+
<p>This is your user dashboard where you can access various features.</p>
|
| 11 |
+
<a href="/menu">Go to Menu</a> <!-- Link to navigate to the menu page -->
|
| 12 |
+
</body>
|
| 13 |
+
</html>
|