2015-10-11 18:14:49 +00:00
|
|
|
<?php
|
|
|
|
/**
|
2016-05-07 17:22:09 +00:00
|
|
|
* FuzeWorks.
|
2015-10-11 18:14:49 +00:00
|
|
|
*
|
|
|
|
* The FuzeWorks MVC PHP FrameWork
|
|
|
|
*
|
|
|
|
* Copyright (C) 2015 TechFuze
|
|
|
|
*
|
|
|
|
* 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/>.
|
|
|
|
*
|
|
|
|
* @author TechFuze
|
2016-05-07 17:22:09 +00:00
|
|
|
* @copyright Copyright (c) 2013 - 2016, Techfuze. (http://techfuze.net)
|
2015-10-11 18:14:49 +00:00
|
|
|
* @copyright Copyright (c) 1996 - 2015, Free Software Foundation, Inc. (http://www.fsf.org/)
|
|
|
|
* @license http://opensource.org/licenses/GPL-3.0 GPLv3 License
|
2016-05-07 17:22:09 +00:00
|
|
|
*
|
2015-10-11 18:14:49 +00:00
|
|
|
* @link http://fuzeworks.techfuze.net
|
|
|
|
* @since Version 0.0.1
|
2016-05-07 17:22:09 +00:00
|
|
|
*
|
2015-10-11 18:14:49 +00:00
|
|
|
* @version Version 0.0.1
|
|
|
|
*/
|
|
|
|
?>
|
|
|
|
|
2015-02-08 16:29:39 +00:00
|
|
|
<html>
|
|
|
|
<head>
|
2016-05-07 17:22:09 +00:00
|
|
|
<title>FuzeWorks - Home</title>
|
|
|
|
<link href="//netdna.bootstrapcdn.com/bootstrap/3.1.1/css/bootstrap.min.css" rel="stylesheet">
|
|
|
|
<style>
|
|
|
|
body {
|
|
|
|
background: #ecf0f1;
|
|
|
|
border-bottom: 1px solid #DDD;
|
|
|
|
padding: 100px 0 100px;
|
|
|
|
font-size: 16px;
|
|
|
|
}
|
2015-02-08 16:29:39 +00:00
|
|
|
|
2016-05-07 17:22:09 +00:00
|
|
|
#setupcontainer {
|
|
|
|
max-width: 950px;
|
|
|
|
margin-left: auto;
|
|
|
|
margin-right: auto;
|
|
|
|
}
|
2015-02-08 16:29:39 +00:00
|
|
|
|
2016-05-07 17:22:09 +00:00
|
|
|
.col-centered{
|
|
|
|
float: none;
|
|
|
|
margin: 0 auto;
|
|
|
|
}
|
2015-02-08 16:29:39 +00:00
|
|
|
|
2016-05-07 17:22:09 +00:00
|
|
|
</style>
|
2015-02-08 16:29:39 +00:00
|
|
|
</head>
|
|
|
|
<body>
|
2016-05-07 17:22:09 +00:00
|
|
|
<div id='setupcontainer'>
|
|
|
|
<div class='row'>
|
|
|
|
<div class='col-lg-12 col-md-4 col-sm-12'>
|
|
|
|
<div id='contentPanel' class="panel panel-default" style='display:none'>
|
|
|
|
<div id='1' class="panel-body" style='display:none'>
|
|
|
|
<p class="lead">Welcome to FuzeWorks</p>
|
|
|
|
<p>
|
|
|
|
This website is currently under development.
|
|
|
|
</p>
|
|
|
|
<p>
|
|
|
|
<?php if ($vars['adminMail'] == '') {
|
|
|
|
?>
|
|
|
|
For further information, please contact the website administrator</a>
|
|
|
|
<?php
|
|
|
|
} else {
|
|
|
|
?>
|
|
|
|
For further information, please contact <a href='mailto:<?php echo $vars['adminMail'];
|
|
|
|
?>'><?php echo $vars['adminMail'];
|
|
|
|
?></a>
|
|
|
|
<?php
|
|
|
|
} ?>
|
2015-08-29 18:34:38 +00:00
|
|
|
|
2016-05-07 17:22:09 +00:00
|
|
|
</p>
|
|
|
|
</div>
|
|
|
|
</div>
|
2015-07-07 15:27:46 +00:00
|
|
|
|
|
|
|
|
2016-05-07 17:22:09 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<footer>
|
|
|
|
<script src="http://code.jquery.com/jquery-1.11.0.min.js"></script>
|
|
|
|
<script src="//netdna.bootstrapcdn.com/bootstrap/3.1.1/js/bootstrap.min.js"></script>
|
2015-02-08 16:29:39 +00:00
|
|
|
|
2016-05-07 17:22:09 +00:00
|
|
|
<script>
|
|
|
|
var currentPage = 0;
|
|
|
|
var currentProgress = 0;
|
2015-08-29 18:34:38 +00:00
|
|
|
|
2016-05-07 17:22:09 +00:00
|
|
|
start();
|
|
|
|
function start() {
|
|
|
|
$("#contentPanel").fadeIn(500);
|
|
|
|
$("#1").fadeIn(500);
|
|
|
|
}
|
|
|
|
</script>
|
|
|
|
</footer>
|
2015-02-08 16:29:39 +00:00
|
|
|
</body>
|
|
|
|
</html>
|