-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpage-time-clock.php
38 lines (31 loc) · 1.29 KB
/
page-time-clock.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
37
38
<?php
/*
Template Name: Time Clock Page
*/
?>
<?php get_header(); ?>
<div id="content" class="clearfix row-fluid">
<div id="main" class="span12 clearfix" role="main">
<?
$ipaddress = $_SERVER['REMOTE_ADDR'];
$error = rand(0, 2);
if ($ipaddress == '128.118.17.253'){
echo "<iframe src='https://docs.google.com/spreadsheet/embeddedform?formkey=dGQxbHg1MmxiQW9KeHlJd1BHMjMyYkE6MQ' width='760' height='900' frameborder='0' marginheight='0' marginwidth='0'>Loading...</iframe>";
} else {
if ($error == 0)
{
echo '<img src="http://s13.postimage.org/y3ozd8xuf/ERMAGHERDBERNERNERS.jpg" alt="lol get a life" />';
echo '<p>OH, YOU THOUGHT THERE WAS SOMETHING RELEVANT HERE?</p>';
} else if($error == 1) {
echo '<img src="http://s11.postimage.org/qw70uxver/Perfect_World.jpg" alt="lol get a life" />';
echo '<p>SORRY, WHAT EXACTLY WERE YOU DOING? CLOCKING IN?</p>';
} else {
echo '<img src="http://s15.postimg.org/p37fl7ih7/Sandbox.png" alt="lol get a life" />';
echo '<p><h1>Sanboxes at the beach:</h1></p>';
echo '<p><h1>Basically the same as trying to clock in when you are not at work.</p></h1>';
}
}
?>
</div> <!-- end #main -->
</div> <!-- end #content -->
<?php get_footer(); ?>