-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
36 lines (29 loc) · 1.05 KB
/
index.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
31
32
33
34
35
36
<?php
/***************************************************************************
* index.php
* -------------------------------------------------------------------------
* Author: Matthew Davidson
* Date: 3/8/2012
* Revision: 1.0.1
***************************************************************************/
if(!isset($CFG)){ include_once ('config.php'); }
include_once ($CFG->dirroot . '/lib/header.php');
//Start Page
include ('header.html');
//Main Layout
echo get_admin_button().get_employee_timeclock_button().'
<div id="display_level" class="display_level ui-corner-all">
<div id="clock" class="light">
<div class="display">
<div class="weekdays"></div>
<div class="ampm"></div>
<div class="digits"></div>
</div>
</div>';
get_home_page();
echo '</div>';
//echo "Server offset is: " . get_date('P',time(),$CFG->servertz);
echo '<div class="loadingscreen" style="display:none;"></div>';
//End Page
include ('footer.html');
?>