-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbid-page.html
35 lines (29 loc) · 1.05 KB
/
bid-page.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
{% extends 'dashboard-layout.html' %}
{% block head %}
<title>Bid On Orders</title>
<link href="/styles/bid-page.css" rel="stylesheet" type="text/css"/>
{% endblock %}
{% if session.get('employeeType') == 'deliveryPerson' %}
{% block body %}
<h1>Available orders:</h1>
<div class="orders">
<!-- display delivery orders without deliverers -->
<!-- <div class="order">
not sure what should go in here
<p>Address</p>
<p>Time Placed</p>
<button>Bid</button>
</div> -->
</div>
<div class="modalContainer">
<div class="modalOverlay"></div>
<div class="modal">
<label for="bid">Amount</label>
<input id="bid" type="number" min=0 step="0.01"/>
<button class="place">Place Bid</button>
<button class="modalCancel">Cancel</button>
</div>
</div>
<script src="/scripts/bids.js"></script>
{% endblock %}
{% endif %}