Spaces:
Build error
Build error
Update templates/dashboard.html
Browse files- templates/dashboard.html +55 -4
templates/dashboard.html
CHANGED
|
@@ -3,11 +3,62 @@
|
|
| 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 |
-
|
| 10 |
-
<
|
| 11 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
| 12 |
</body>
|
| 13 |
</html>
|
|
|
|
| 3 |
<head>
|
| 4 |
<meta charset="UTF-8">
|
| 5 |
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
| 6 |
+
<title>Dashboard - Biryani Hub</title>
|
| 7 |
+
<style>
|
| 8 |
+
/* General Body Styling */
|
| 9 |
+
body {
|
| 10 |
+
font-family: Arial, sans-serif;
|
| 11 |
+
background-color: #f0f0f0;
|
| 12 |
+
margin: 0;
|
| 13 |
+
padding: 0;
|
| 14 |
+
}
|
| 15 |
+
|
| 16 |
+
/* Container for the dashboard content */
|
| 17 |
+
.dashboard-container {
|
| 18 |
+
max-width: 900px;
|
| 19 |
+
margin: 50px auto;
|
| 20 |
+
padding: 20px;
|
| 21 |
+
background-color: #fff;
|
| 22 |
+
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
|
| 23 |
+
border-radius: 8px;
|
| 24 |
+
text-align: center;
|
| 25 |
+
}
|
| 26 |
+
|
| 27 |
+
/* Heading Style */
|
| 28 |
+
h1 {
|
| 29 |
+
font-size: 2.5rem;
|
| 30 |
+
color: #333;
|
| 31 |
+
margin-bottom: 20px;
|
| 32 |
+
}
|
| 33 |
+
|
| 34 |
+
/* Paragraph Style */
|
| 35 |
+
p {
|
| 36 |
+
font-size: 1.2rem;
|
| 37 |
+
color: #666;
|
| 38 |
+
margin-bottom: 30px;
|
| 39 |
+
}
|
| 40 |
+
|
| 41 |
+
/* Link Style */
|
| 42 |
+
a {
|
| 43 |
+
text-decoration: none;
|
| 44 |
+
color: #4CAF50;
|
| 45 |
+
font-weight: bold;
|
| 46 |
+
font-size: 1.2rem;
|
| 47 |
+
transition: color 0.3s;
|
| 48 |
+
}
|
| 49 |
+
|
| 50 |
+
a:hover {
|
| 51 |
+
color: #45a049;
|
| 52 |
+
}
|
| 53 |
+
</style>
|
| 54 |
</head>
|
| 55 |
<body>
|
| 56 |
+
|
| 57 |
+
<div class="dashboard-container">
|
| 58 |
+
<h1>Welcome to the Dashboard</h1>
|
| 59 |
+
<p>This is your user dashboard where you can access various features.</p>
|
| 60 |
+
<a href="/menu">Go to Menu</a>
|
| 61 |
+
</div>
|
| 62 |
+
|
| 63 |
</body>
|
| 64 |
</html>
|