nagasurendra commited on
Commit
b35554e
·
verified ·
1 Parent(s): 9fec724

Update templates/menu.html

Browse files
Files changed (1) hide show
  1. 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
- <div>
111
- <button onclick="window.location.href='{{ url_for('order_history') }}'"
112
- class="btn btn-light"
113
- style="color: #007bff; font-weight: bold;">
114
- Order History
115
- </button>
116
- </div>
117
- <div>
118
- <button onclick="window.location.href='{{ url_for('logout') }}'"
119
- class="btn btn-light"
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>