-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
90 lines (76 loc) · 2.02 KB
/
index.php
File metadata and controls
90 lines (76 loc) · 2.02 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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="viewport" content="height=device-height, initial-scale=1">
<link href='https://fonts.googleapis.com/css?family=Open+Sans:400,700' rel='stylesheet' type='text/css'>
<link rel="stylesheet" type="text/css" href="css/style.css">
<script src="jquery-3.1.0.min.js"></script>
<?php
include_once 'chris_test.php';
$init = new feedclass();
$data = $init->init();
?>
</head>
<body>
<div class="wrapper">
<div class="header">
<h1>Creative Tech Service Desk</h1>
</div>
<div class="mainWrapper">
<div class="box box1">
<div class="boxName">
<p>New Tickets</p>
</div>
<div class="boxNum">
<span class="numbers"><?php echo $data['open'] ?></span>
</div>
</div>
<div class="box box2">
<div class="boxName">
<p>Working On</p>
</div>
<div class="boxNum">
<span class="numbers"><?php echo $data['workingOnIt'] ?></span>
</div>
</div>
<div class="box box3">
<div class="boxName">
<p>Waiting On...</p>
</div>
<div class="boxNum">
<span class="numbers"><?php echo $data['waitingOn...'] ?></span>
</div>
</div>
<div class="box box4">
<div class="boxName">
<p>Ad Builder</p>
</div>
<div class="boxNum">
<span class="numbers"><?php echo $data['waitingOnAdBuilder'] ?></span>
</div>
</div>
<div class="box box5">
<div class="boxName">
<p>Creative Manager</p>
</div>
<div class="boxNum">
<span class="numbers"><?php echo $data['waitingOnCreativeManager'] ?></span>
</div>
</div>
<div class="box box6">
<div class="boxName">
<p>JS Dev</p>
</div>
<div class="boxNum">
<span class="numbers"><?php echo $data['waitingOnjsDev'] ?></span>
</div>
</div>
</div>
</div>
<script>
setTimeout(function(){ location.reload(); }, 300000);
</script>
</body>
</html>