forked from markbil/RFIDCheckinSystem
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.php
More file actions
57 lines (43 loc) · 2.59 KB
/
index.php
File metadata and controls
57 lines (43 loc) · 2.59 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
<?php
$urlbase = "http://localhost/RFIDCheckinSystem/";
//$urlbase = "http://theedge.checkinsystem.net/";
//$urlbase = "http://meetmee.javaprovider.net/php/RFIDCheckinSystem/API/"
//$urlbase = "http://meetmee.javaprovider.net/php/TheEdge_VisitorProfiles/API/";
?>
<html>
<head>
<meta http -equiv="Content-Type" content="text/html; charset=utf-8" />
<!-- Screen -->
<link rel="StyleSheet" href="<?php echo $urlbase ?>userprofile/include/css/clear.css" type="text/css" />
<link rel="StyleSheet" href="<?php echo $urlbase ?>userprofile/include/css/screen.css" type="text/css" />
<!-- Mobile -->
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=2.0, user-scalable=yes" />
<!--<link rel="stylesheet" type="text/css" media="only screen and (max-width: 570px), only screen and (max-device-width: 570px)" href="<?php echo $urlbase ?>userprofile/include/css/antiscreen.css" />
<link rel="stylesheet" type="text/css" media="handheld, only screen and (max-width: 570px), only screen and (max-device-width: 570px)" href="<?php echo $urlbase ?>userprofile/include/css/clear.css" />-->
<link rel="stylesheet" type="text/css" media="handheld, only screen and (max-width: 570px), only screen and (max-device-width: 570px)" href="<?php echo $urlbase ?>userprofile/include/css/handheld.css" />
<!--[if IEMobile]>
<link rel="stylesheet" type="text/css" media="screen" href="<?php echo $urlbase ?>userprofile/include/css/handheld.css" />
<![endif]-->
<!-- Jquery UI Style -->
<link rel="StyleSheet" href="<?php echo $urlbase ?>userprofile/include/css/ui-lightness/jquery-ui-1.8.21.custom.css" type="text/css" />
<title>The Edge RFID Checkin</title>
<script type="text/javascript" src="<?php echo $urlbase ?>userprofile/include/js/jquery-1.7.2.min.js"></script>
<script type="text/javascript" src="<?php echo $urlbase ?>userprofile/include/js/jquery-ui-1.8.21.custom.min.js"></script>
<script type="text/javascript" src="<?php echo $urlbase ?>userprofile/include/js/rfid_edge_common.js"></script>
</head>
<body>
<a id="logo" class="center" href="http://edgeqld.org.au"><h1>The Edge Checkin System</h1></a>
<div id="content" class="center">
<div class="content-inner center">
<h1>Checkin System Landing Page</h1>
<p>This is The Edge's Checkin System homepage</p>
<br/>
<p><a href="<?php echo $urlbase ?>userprofile/index.php">Login Page</a></p><br />
<p><a href="<?php echo $urlbase ?>API/index.php">Backend API</a></p>
</div>
</div>
<div id="footer" class="center">
<strong>© The Edge 2012</strong>
</div>
</body>
</html>