Spaces:
Sleeping
Sleeping
Update templates/menu.html
Browse files- templates/menu.html +11 -13
templates/menu.html
CHANGED
@@ -107,20 +107,18 @@
|
|
107 |
<div>
|
108 |
<h6>Referral Code: <span id="referral-code">{{ referral_code }}</span></h6>
|
109 |
</div>
|
110 |
-
|
111 |
-
|
112 |
-
|
113 |
-
|
114 |
-
|
115 |
-
|
116 |
-
|
117 |
-
|
118 |
-
|
119 |
-
|
120 |
-
style="color: #007bff; font-weight: bold;">
|
121 |
-
Logout
|
122 |
-
</button>
|
123 |
</div>
|
|
|
124 |
<div>
|
125 |
<h6>Reward Points: <span id="reward-points">{{ reward_points }}</span></h6>
|
126 |
</div>
|
|
|
107 |
<div>
|
108 |
<h6>Referral Code: <span id="referral-code">{{ referral_code }}</span></h6>
|
109 |
</div>
|
110 |
+
<!-- Include Bootstrap Icons -->
|
111 |
+
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons/font/bootstrap-icons.css">
|
112 |
+
|
113 |
+
<div class="d-flex align-items-center">
|
114 |
+
<a href="{{ url_for('order_history') }}" class="text-white mx-2" title="Order History">
|
115 |
+
<i class="bi bi-clock-history fs-4"></i>
|
116 |
+
</a>
|
117 |
+
<a href="{{ url_for('logout') }}" class="text-white mx-2" title="Logout">
|
118 |
+
<i class="bi bi-box-arrow-right fs-4"></i>
|
119 |
+
</a>
|
|
|
|
|
|
|
120 |
</div>
|
121 |
+
|
122 |
<div>
|
123 |
<h6>Reward Points: <span id="reward-points">{{ reward_points }}</span></h6>
|
124 |
</div>
|