-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
54 lines (49 loc) · 1.43 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
<?php
include 'php/global.php';
?>
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="theme-color" content="#333">
<meta name="msapplication-navbutton-color" content="#333">
<meta name="apple-mobile-web-app-status-bar-style" content="#333">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>IAO Notification Platform</title>
<link rel="shortcut icon" type="image/png" href="ico/favicon.png" />
<link rel="stylesheet" type="text/css" href="css/reset.css">
<link rel="stylesheet" type="text/css" href="css/frontuiux.css">
<link rel="stylesheet" type="text/css" href="css/jquery-ui.css">
<link rel="stylesheet" type="text/css" href="css/style.css">
<link rel="stylesheet" type="text/css" href="css/magic.min.css">
<script type="text/javascript" src="js/jquery.min.js"></script>
<script type="text/javascript" src="js/jquery.ui.js"></script>
<script type="text/javascript" src="js/front.iao.js"></script>
<script type="text/javascript" src="js/search.js"></script>
</head>
<body>
<?php
$view = "";
if (isset($_GET['view'])) {
$view = $_GET['view'];
}
switch ($view) {
case 'signup':
include 'views/signup.php';
break;
case 'signin':
include 'views/signin.php';
break;
case 'forgotpass':
include 'views/forgotpass.php';
break;
case 'home':
include 'views/home.php';
break;
default:
include 'views/home.php';
break;
}
?>
</body>
</html>