-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprogressbar.html
45 lines (36 loc) · 1.39 KB
/
progressbar.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
36
37
38
39
40
41
42
43
44
45
{% extends 'dashboard-layout.html' %}
{% block head %}
<title>Dashboard: Home</title>
<link href="/styles/chefprogress.css" rel="stylesheet" type="text/css">
{% endblock %}
{% block body %}
<div class="title">
<h2>Welcome to Dashboard</h2>
<!-- will prob display different stuff here based on employee -->
</div>
{% if session.get('employeeType') == 'chef' %}
<div>
<div class="title">
<h2>You're a chef.</h2>
</div>
<div class ="progresscontainer">
<div class="progress" id="progress"></div>
<div class="circle active"><i class="fa-solid fa-circle-check"></i></div>
<div class="circle active"><i class="fa-solid fa-circle-check"></i></div>
<div class="circle active"><i class="fa-solid fa-circle-check"></i></div>
<!-- <div class="progresstext">
<h2>Incoming order.</h2>
<h2>Preparing order.</h2>
<h2>Order ready for delivery.</h2>
</div> -->
</div>
<button class="stepbtn" id="prev" disabled>Previous Step</button>
<button class="stepbtn" id="next" disabled>Next Step</button>
{% else %}
<div>
<t1> You're a customer. </t1>
</div>
{% endif %}
<!-- <script src="/scripts/showstatus.js"></script> -->
<script src="/scripts/updateprogress.js"></script>
{% endblock %}