-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.php
84 lines (70 loc) · 2.46 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
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
<?php
/**
* index.php
*
* Copyright information
*
* Copyright (C) 2012 Jarmo Kortetjärvi <[email protected]>
*
* License
*
* This file is part of project Futural/bank.
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
*/
require_once 'CommonServices/CommonFunctions.php';
/**
* The main menu index for Futural
*
* @package futural
* @author Jarmo Kortetjärvi
* @copyright 2012 <[email protected]>
* @license GPLv3 or any later version
* @version 2012-12-14
*/
$metaData =
'<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">';
$styleData =
"<style type='text/css'>
</style>";
$headData =
"<head>
<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\" />
<title>Futural</title>
<!-- favicon -->
<link rel=\"shortcut icon\" href=\"images/favicon.ico\" type=\"image/x-icon\" />
<!-- styles -->
<link rel=\"stylesheet\" type=\"text/css\" href=\"CommonServices/css/normalize.css\" />
<link rel=\"stylesheet\" type=\"text/css\" href=\"futural.css\" />
<link href='http://fonts.googleapis.com/css?family=Ubuntu' rel='stylesheet' type='text/css'>
<!-- favicon -->
<link rel=\"shortcut icon\" href=\"images/favicon.ico\" />
</head>
<body>";
echo $metaData.$headData;
echo CommonFunctions::getDisclaimerDiv();
echo "
<div id='container'>
<div id='centered'>
<a href='bank' class='menuButton'><img src='bank/css/img/futural_logo_bank.png' alias='bank'/></a>
<a href='tax' class='menuButton'><img src='tax/images/logo.png' alias='tax'/></a>
</div>
</div><!-- /container -->";
echo CommonFunctions::getStartupDiv();
echo "</body>
</html>";
?>