-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathshake.php
30 lines (30 loc) · 1.07 KB
/
shake.php
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
<?php
if(!isset($_POST['employeeCode'])){
header('Location: register.php');
}
?>
<?php include("./header.php"); ?>
<input type="hidden" id="employeeCode" name="employeeCode" value="<?= trim($_POST['employeeCode']) ?>" />
<div class="row pt-5">
<div class="col-12">
<div class="card shadow p-2" style="border-radius:20px 20px;">
<div class="card-body">
<div id="color_label">
<div class="text-center mb-3">
<img src="./assets/trans-logo.jpg" class="img-fluid"/>
</div>
<h2 class="font-weight-bold text-center" id="status_label"></h2>
<div class="text-center row">
<div class="col-12 pt-3">
<div class="display-3 font-weight-bold" id="current_score">...</div><br/>
<!-- <h4 id="score_label" class="font-weight-bold">%</h4> -->
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- <script src="./app.js"></script> -->
<script src="./shake.js"></script>
<?php include("./footer.php"); ?>