This repository was archived by the owner on Oct 11, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathoperator.html
More file actions
33 lines (29 loc) · 2.52 KB
/
operator.html
File metadata and controls
33 lines (29 loc) · 2.52 KB
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
<div id="page" class='page'>
<div id="operators" class="operatorSummaryOuter">
<div id="operator1">
<h3>On average, your <em>engineer</em> is projected to experience:</h3>
<div id="bullets">
<ul>
<li id="low_work_0">low workload range for <?php echo $low_count_0*10; ?> minutes <span class="hint--right hint--rounded hint--large" aria-label= "Levels of utilization below 30% have been associated with poor performance due to boredom and distraction."><sup>(?)</sup></span></li>
<li id="normal_work_0">moderate workload range for <?php echo $normal_count_0*10; ?> minutes </li>
<li id="high_work_0">high workload range for <?php echo $high_count_0*10; ?> minutes <span class="hint--right hint--rounded hint--large" aria-label= "A 70% utilization threshold was selected to indicate an upper bound of optimal task loading, at which point operators may be too busy to accumulate information required to maintain situational awareness for safety."><sup>(?)</sup></span></li>
</ul>
</div>
<form action="investigate.php?operator=engineer" method="post" style='text-align: center;'>
<button type="submit" id="submit1" class="button" style="background-color: #4CAF50;">Investigate</button>
</form>
</div>
<div id="operator2" style='<?php echo $operator2Style; ?>'>
<h3>On average, your <em>conductor</em> is projected to experience:</h3>
<div id="bullets">
<ul>
<li id="low_work_1">low workload range for <?php echo $low_count_1*10; ?> minutes <span class="hint--right hint--rounded hint--large" aria-label= "Levels of utilization below 30% have been associated with poor performance due to boredom and distraction."><sup>(?)</sup></span></li>
<li id="normal_work_1">moderate workload range for <?php echo $normal_count_1*10; ?> minutes</li>
<li id="high_work_1">high workload range for <?php echo $high_count_1*10; ?> minutes <span class="hint--right hint--rounded hint--large" aria-label= "A 70% utilization threshold was selected to indicate an upper bound of optimal task loading, at which point operators may be too busy to accumulate information required to maintain situational awareness for safety."><sup>(?)</sup></span></li>
</ul>
</div>
<form action="investigate.php?operator=conductor" method="post" style='text-align: center;'>
<button type="submit" id="submit2" class="button" style="background-color: #4CAF50;">Investigate</button>
</form>
</div>
</div>