Spaces:
Sleeping
Sleeping
Update templates/menu.html
Browse files- templates/menu.html +15 -1
templates/menu.html
CHANGED
|
@@ -82,6 +82,20 @@
|
|
| 82 |
align-items: center;
|
| 83 |
justify-content: center;
|
| 84 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 85 |
.view-cart-button:hover {
|
| 86 |
background-color: #0056b3;
|
| 87 |
text-decoration: none;
|
|
@@ -94,7 +108,7 @@
|
|
| 94 |
<h6>Referral Code: <span id="referral-code">{{ referral_code }}</span></h6>
|
| 95 |
</div>
|
| 96 |
|
| 97 |
-
<a href="/
|
| 98 |
|
| 99 |
<div>
|
| 100 |
<h6>Reward Points: <span id="reward-points">{{ reward_points }}</span></h6>
|
|
|
|
| 82 |
align-items: center;
|
| 83 |
justify-content: center;
|
| 84 |
}
|
| 85 |
+
.new-link {
|
| 86 |
+
background-color: #4CAF50; /* Green background for the link */
|
| 87 |
+
color: white;
|
| 88 |
+
padding: 8px 16px;
|
| 89 |
+
border-radius: 25px;
|
| 90 |
+
text-decoration: none;
|
| 91 |
+
font-weight: bold;
|
| 92 |
+
font-size: 1rem;
|
| 93 |
+
transition: background-color 0.3s ease;
|
| 94 |
+
}
|
| 95 |
+
|
| 96 |
+
.new-link:hover {
|
| 97 |
+
background-color: #45a049; /* Darker green on hover */
|
| 98 |
+
}
|
| 99 |
.view-cart-button:hover {
|
| 100 |
background-color: #0056b3;
|
| 101 |
text-decoration: none;
|
|
|
|
| 108 |
<h6>Referral Code: <span id="referral-code">{{ referral_code }}</span></h6>
|
| 109 |
</div>
|
| 110 |
|
| 111 |
+
<a href="/previous_orders" class="new-link">Go to Next Page</a>
|
| 112 |
|
| 113 |
<div>
|
| 114 |
<h6>Reward Points: <span id="reward-points">{{ reward_points }}</span></h6>
|