update
This commit is contained in:
parent
91c6c0f57e
commit
0e256c44a6
45 changed files with 193 additions and 125 deletions
30
about.php
Normal file
30
about.php
Normal file
|
@ -0,0 +1,30 @@
|
|||
<?php
|
||||
define('IN_SYS', true);
|
||||
require_once "core.php";
|
||||
|
||||
$section = empty($_GET["s"]) ? "uiisc" : $_GET["s"];
|
||||
$enable_section = ["crogram", "ifastnet", "uiisc"];
|
||||
|
||||
switch ($section) {
|
||||
case "crogram":
|
||||
$title = $title . ' - ' . $LANG['about'] . ' Crogram';
|
||||
break;
|
||||
case "ifastnet":
|
||||
$title = $title . ' - ' . $LANG['about'] . ' iFastNet';
|
||||
break;
|
||||
case "uiisc":
|
||||
$title = $title . ' - ' . $LANG['about'] . ' UIISC';
|
||||
break;
|
||||
}
|
||||
|
||||
include("include/header.php");
|
||||
|
||||
if (in_array($section, $enable_section)) {
|
||||
include("include/about_" . $section . ".php");
|
||||
} else {
|
||||
include("include/about_uiisc.php");
|
||||
}
|
||||
|
||||
|
||||
|
||||
include("include/footer.php");
|
|
@ -1,20 +0,0 @@
|
|||
<?php
|
||||
define('IN_SYS', true);
|
||||
require_once "core.php";
|
||||
$title = 'About Crogram';
|
||||
?>
|
||||
<?php include ("header.php"); ?>
|
||||
|
||||
<div class="bs-docs-header">
|
||||
<div class="container">
|
||||
<h1>CROGRAM</h1>
|
||||
<p>About Crogram, Inc.</p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<?php include "footer.php";?>
|
|
@ -1,20 +0,0 @@
|
|||
<?php
|
||||
define('IN_SYS', true);
|
||||
require_once "core.php";
|
||||
$title = 'About iFastNet';
|
||||
?>
|
||||
<?php include ("header.php"); ?>
|
||||
|
||||
<div class="bs-docs-header">
|
||||
<div class="container">
|
||||
<h1>iFastNet</h1>
|
||||
<p>About iFastNet, Inc.</p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<?php include "footer.php";?>
|
|
@ -1,19 +0,0 @@
|
|||
<?php
|
||||
define('IN_SYS', true);
|
||||
require_once "core.php";
|
||||
$title = 'About UIISC';
|
||||
?>
|
||||
<?php include ("header.php"); ?>
|
||||
<div class="bs-docs-header">
|
||||
<div class="container">
|
||||
<h1>UIISC</h1>
|
||||
<p>About UIISC</p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
</div>
|
||||
</div>
|
||||
<?php include "footer.php";?>
|
||||
</body>
|
||||
</html>
|
Before Width: | Height: | Size: 106 KiB After Width: | Height: | Size: 106 KiB |
|
@ -5,7 +5,7 @@
|
|||
// preg_match('/<footer[^>]*id="footer"[^>]*>(.*?) <//footer>/si', $html, $match);
|
||||
$title = $title . ' - ' . $LANG['cancellation_refund'];
|
||||
?>
|
||||
<?php include ("header.php"); ?>
|
||||
<?php include ("include/header.php"); ?>
|
||||
|
||||
<div class="container">
|
||||
<div class="page-header">
|
||||
|
@ -85,4 +85,4 @@
|
|||
</div>
|
||||
</section>
|
||||
|
||||
<?php include ("footer.php"); ?>
|
||||
<?php include ("include/footer.php"); ?>
|
|
@ -3,7 +3,7 @@
|
|||
require_once ("core.php");
|
||||
$title = $title . ' - ' . $LANG['contact_us'];
|
||||
?>
|
||||
<?php include ("header.php"); ?>
|
||||
<?php include ("include/header.php"); ?>
|
||||
|
||||
<div class="container">
|
||||
<div class="page-header">
|
||||
|
@ -30,4 +30,4 @@
|
|||
</div>
|
||||
</div>
|
||||
|
||||
<?php include ("footer.php"); ?>
|
||||
<?php include ("include/footer.php"); ?>
|
||||
|
|
2
core.php
2
core.php
|
@ -4,7 +4,7 @@ if (!defined('IN_SYS')) {
|
|||
header("Location: index.php");
|
||||
exit;
|
||||
}
|
||||
include_once dirname(__FILE__) . '/include/language.php';
|
||||
include_once dirname(__FILE__) . '/lib/language.php';
|
||||
$title = "UIISC";
|
||||
$title_s = "UIISC";
|
||||
$author = 'Crogram Inc.';
|
||||
|
|
4
help.php
4
help.php
|
@ -3,7 +3,7 @@
|
|||
require_once ("core.php");
|
||||
$title = $title . ' - ' . $LANG['help'];
|
||||
?>
|
||||
<?php include ("header.php"); ?>
|
||||
<?php include ("include/header.php"); ?>
|
||||
|
||||
<div class="container">
|
||||
<div class="page-header">
|
||||
|
@ -22,4 +22,4 @@
|
|||
</div>
|
||||
</div>
|
||||
|
||||
<?php include ("footer.php"); ?>
|
||||
<?php include ("include/footer.php"); ?>
|
||||
|
|
19
include/about_crogram.php
Normal file
19
include/about_crogram.php
Normal file
|
@ -0,0 +1,19 @@
|
|||
<?php
|
||||
if (!defined('IN_SYS')) {
|
||||
// exit('禁止访问');
|
||||
header("Location: index.php");
|
||||
exit;
|
||||
}
|
||||
?>
|
||||
|
||||
<div class="bs-docs-header">
|
||||
<div class="container">
|
||||
<h1>CROGRAM</h1>
|
||||
<p>About Crogram, Inc.</p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
|
||||
</div>
|
||||
</div>
|
20
include/about_ifastnet.php
Normal file
20
include/about_ifastnet.php
Normal file
|
@ -0,0 +1,20 @@
|
|||
<?php
|
||||
if (!defined('IN_SYS')) {
|
||||
// exit('禁止访问');
|
||||
header("Location: index.php");
|
||||
exit;
|
||||
}
|
||||
|
||||
?>
|
||||
|
||||
<div class="bs-docs-header">
|
||||
<div class="container">
|
||||
<h1>iFastNet</h1>
|
||||
<p>About iFastNet, Inc.</p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
|
||||
</div>
|
||||
</div>
|
19
include/about_uiisc.php
Normal file
19
include/about_uiisc.php
Normal file
|
@ -0,0 +1,19 @@
|
|||
<?php
|
||||
if (!defined('IN_SYS')) {
|
||||
// exit('禁止访问');
|
||||
header("Location: index.php");
|
||||
exit;
|
||||
}
|
||||
|
||||
?>
|
||||
|
||||
<div class="bs-docs-header">
|
||||
<div class="container">
|
||||
<h1>UIISC</h1>
|
||||
<p>About UIISC</p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
</div>
|
||||
</div>
|
|
@ -1,7 +1,7 @@
|
|||
<?php
|
||||
if (!defined('IN_SYS')) {
|
||||
// exit('禁止访问');
|
||||
header("Location: index.php");
|
||||
header("Location: ../index.php");
|
||||
exit;
|
||||
}
|
||||
?>
|
||||
|
@ -36,8 +36,8 @@ if (!defined('IN_SYS')) {
|
|||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
<script src="/lib/jquery/jquery.min.js"></script>
|
||||
<script src="/lib/bootstrap/js/bootstrap.min.js"></script>
|
||||
<script src="/assets/jquery/jquery.min.js"></script>
|
||||
<script src="/assets/bootstrap/js/bootstrap.min.js"></script>
|
||||
<script src="/assets/js/common.js?_=<?php echo $static_release; ?>"></script>
|
||||
<script type="text/javascript">
|
||||
var domain = "<?php echo $lang->getDomain(); ?>";
|
||||
|
@ -62,13 +62,13 @@ if (!defined('IN_SYS')) {
|
|||
}
|
||||
</script>
|
||||
<!-- Global site tag (gtag.js) - Google Analytics -->
|
||||
<!-- <script async src="https://www.googletagmanager.com/gtag/js?id=UA-28162642-10"></script>
|
||||
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-28162642-10"></script>
|
||||
<script>
|
||||
window.dataLayer = window.dataLayer || [];
|
||||
function gtag(){dataLayer.push(arguments);}
|
||||
gtag('js', new Date());
|
||||
gtag('config', 'UA-28162642-10');
|
||||
</script> -->
|
||||
</script>
|
||||
|
||||
</body>
|
||||
</html>
|
|
@ -1,7 +1,7 @@
|
|||
<?php
|
||||
if (!defined('IN_SYS')) {
|
||||
// exit('禁止访问');
|
||||
header("Location: index.php");
|
||||
header("Location: ../index.php");
|
||||
exit;
|
||||
}
|
||||
?>
|
||||
|
@ -14,13 +14,13 @@ if (!defined('IN_SYS')) {
|
|||
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0, user-scalable=no">
|
||||
<meta name="description" content="<?php echo $description; ?>">
|
||||
<meta name="author" content="<?php echo $author; ?>">
|
||||
<!-- <meta name="google-site-verification" content="5O6Wxt0gIyGb7btMuXiQqddZJ516n-xBOW_9RLMBeSY" /> -->
|
||||
<meta name="google-site-verification" content="5O6Wxt0gIyGb7btMuXiQqddZJ516n-xBOW_9RLMBeSY" />
|
||||
<link href="/favicon.ico?_=<?php echo $static_release; ?>" rel="icon">
|
||||
<link href="/lib/bootstrap/css/bootstrap.min.css?_=<?php echo $static_release; ?>" rel="stylesheet">
|
||||
<link href="/assets/bootstrap/css/bootstrap.min.css?_=<?php echo $static_release; ?>" rel="stylesheet">
|
||||
<link href="/assets/css/style.css?_=<?php echo $static_release; ?>" rel="stylesheet">
|
||||
<!--[if lt IE 9]>
|
||||
<script src="/lib/html5shiv/html5shiv.min.js"></script>
|
||||
<script src="/lib/respond/respond.min.js"></script>
|
||||
<script src="/assets/html5shiv/html5shiv.min.js"></script>
|
||||
<script src="/assets/respond/respond.min.js"></script>
|
||||
<![endif]-->
|
||||
</head>
|
||||
<body>
|
||||
|
@ -41,19 +41,24 @@ if (!defined('IN_SYS')) {
|
|||
<ul class="nav navbar-nav">
|
||||
<li><a href="/index.php"><?php echo $LANG['home']; ?></a></li>
|
||||
<li><a href="/solution.php"><?php echo $LANG['solution']; ?></a></li>
|
||||
<li><a href="/about.php"><?php echo $LANG['about']; ?></a></li>
|
||||
<li><a href="/contact.php"><?php echo $LANG['contact']; ?></a></li>
|
||||
<li><a href="/help.php"><?php echo $LANG['help']; ?></a></li>
|
||||
<li class="dropdown">
|
||||
<a href="javascript:void(0)" class="dropdown-toggle" data-toggle="dropdown"><?php echo $LANG['more']; ?> <span class="caret"></span></a>
|
||||
<ul class="dropdown-menu" role="menu">
|
||||
<li><a href="javascript:void(0)"><?php echo $LANG['home']; ?></a></li>
|
||||
<li><a href="javascript:void(0)"><?php echo $LANG['tos']; ?></a></li>
|
||||
<li><a href="/help.php"><?php echo $LANG['help']; ?></a></li>
|
||||
<li class="divider"></li>
|
||||
<li class="dropdown-header"><?php echo $LANG['aboutus']; ?></li>
|
||||
<li><a href="/about.php?s=uiisc"><?php echo $LANG['about']; ?> UIISC</a></li>
|
||||
<li><a href="/about.php?s=crogram"><?php echo $LANG['about']; ?> Crogram,Inc.</a></li>
|
||||
<li><a href="/about.php?s=ifastnet"><?php echo $LANG['about']; ?> iFastNet</a></li>
|
||||
<li class="divider"></li>
|
||||
<li><a href="/cancellation-refund.php"><?php echo $LANG['cancellation_refund']; ?></a></li>
|
||||
<li><a href="/payment-methods.php"><?php echo $LANG['payment_methods']; ?></a></li>
|
||||
<li class="divider"></li>
|
||||
<li class="dropdown-header"><?php echo $LANG['legal_information']; ?></li>
|
||||
<li><a href="/legal_terms.php"><?php echo $LANG['tos']; ?></a></li>
|
||||
<li><a href="/legal_cancellation-refund.php"><?php echo $LANG['cancellation_refund']; ?></a></li>
|
||||
<li><a href="/legal_privacy.php"><?php echo $LANG['privacy_policy']; ?></a></li>
|
||||
<li><a href="/legal_payment-methods.php"><?php echo $LANG['payment_methods']; ?></a></li>
|
||||
<li><a href="/legal.php?s=terms"><?php echo $LANG['tos']; ?></a></li>
|
||||
<li><a href="/legal.php?s=privacy"><?php echo $LANG['privacy_policy']; ?></a></li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
2
include/index.php
Normal file
2
include/index.php
Normal file
|
@ -0,0 +1,2 @@
|
|||
<?php
|
||||
header("Location: ../index.php");
|
|
@ -1,11 +1,13 @@
|
|||
<?php
|
||||
define('IN_SYS', true);
|
||||
require_once ("core.php");
|
||||
// $html = file_get_contents('https://ifastnet.com/privacy.php');
|
||||
// preg_match('/<footer[^>]*id="footer"[^>]*>(.*?) <//footer>/si', $html, $match);
|
||||
$title = $title . ' - ' . $LANG['privacy_policy'];
|
||||
if (!defined('IN_SYS')) {
|
||||
// exit('禁止访问');
|
||||
header("Location: ../index.php");
|
||||
exit;
|
||||
}
|
||||
// $html = file_get_contents('https://ifastnet.com/privacy.php');
|
||||
// preg_match('/<footer[^>]*id="footer"[^>]*>(.*?) <//footer>/si', $html, $match);
|
||||
$title = $title . ' - ' . $LANG['privacy_policy'];
|
||||
?>
|
||||
<?php include ("header.php"); ?>
|
||||
|
||||
<div class="container">
|
||||
<div class="page-header">
|
||||
|
@ -93,5 +95,3 @@
|
|||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<?php include ("footer.php"); ?>
|
|
@ -1,11 +1,13 @@
|
|||
<?php
|
||||
define('IN_SYS', true);
|
||||
require_once ("core.php");
|
||||
// $html = file_get_contents('https://ifastnet.com/portal/terms.php');
|
||||
// preg_match('/<footer[^>]*id="footer"[^>]*>(.*?) <//footer>/si', $html, $match);
|
||||
$title = $title . ' - ' . $LANG['tos'];
|
||||
if (!defined('IN_SYS')) {
|
||||
// exit('禁止访问');
|
||||
header("Location: ../index.php");
|
||||
exit;
|
||||
}
|
||||
// $html = file_get_contents('https://ifastnet.com/portal/terms.php');
|
||||
// preg_match('/<footer[^>]*id="footer"[^>]*>(.*?) <//footer>/si', $html, $match);
|
||||
$title = $title . ' - ' . $LANG['tos'];
|
||||
?>
|
||||
<?php include ("header.php"); ?>
|
||||
|
||||
<div class="container">
|
||||
<div class="page-header">
|
||||
|
@ -851,5 +853,3 @@
|
|||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<?php include ("footer.php"); ?>
|
|
@ -1,7 +1,7 @@
|
|||
<?php
|
||||
if(!defined('IN_SYS')) {
|
||||
// exit('禁止访问');
|
||||
header("Location: index.php");
|
||||
header("Location: ../index.php");
|
||||
exit;
|
||||
}
|
||||
?>
|
||||
|
@ -23,17 +23,17 @@
|
|||
<li><a href="/index.php"><?php echo $LANG['home']; ?></a></li>
|
||||
<li><a href="/solution.php"><?php echo $LANG['solution']; ?></a></li>
|
||||
<li><a href="/contact.php"><?php echo $LANG['contact']; ?></a></li>
|
||||
<li><a href="/help.php"><?php echo $LANG['help']; ?></a></li>
|
||||
<li class="dropdown">
|
||||
<a href="javascript:void(0)" class="dropdown-toggle" data-toggle="dropdown"><?php echo $LANG['more']; ?> <span class="caret"></span></a>
|
||||
<ul class="dropdown-menu" role="menu">
|
||||
<li><a href="javascript:void(0)"><?php echo $LANG['home']; ?></a></li>
|
||||
<li><a href="/about.php"><?php echo $LANG['about']; ?></a></li>
|
||||
<li><a href="/help.php"><?php echo $LANG['help']; ?></a></li>
|
||||
<li><a href="javascript:void(0)"><?php echo $LANG['tos']; ?></a></li>
|
||||
<li class="divider"></li>
|
||||
<li class="dropdown-header"><?php echo $LANG['legal_information']; ?></li>
|
||||
<li><a href="/legal_terms.php"><?php echo $LANG['tos']; ?></a></li>
|
||||
<li><a href="/legal.php?s=terms"><?php echo $LANG['tos']; ?></a></li>
|
||||
<li><a href="/legal.php?s=privacy"><?php echo $LANG['privacy_policy']; ?></a></li>
|
||||
<li><a href="/legal_cancellation-refund.php"><?php echo $LANG['cancellation_refund']; ?></a></li>
|
||||
<li><a href="/legal_privacy.php"><?php echo $LANG['privacy_policy']; ?></a></li>
|
||||
<li><a href="/legal_payment-methods.php"><?php echo $LANG['payment_methods']; ?></a></li>
|
||||
</ul>
|
||||
</li>
|
|
@ -2,7 +2,7 @@
|
|||
define('IN_SYS', true);
|
||||
require_once ("core.php");
|
||||
?>
|
||||
<?php include ("header.php"); ?>
|
||||
<?php include ("include/header.php"); ?>
|
||||
|
||||
<div class="container">
|
||||
<div class="jumbotron">
|
||||
|
@ -23,13 +23,13 @@
|
|||
<div class="row">
|
||||
<div class="col-md-6">
|
||||
<h2>Automated features!</h2>
|
||||
<img src="images/img6.jpg" alt="server" class="img-rounded">
|
||||
<img src="assets/images/img6.jpg" alt="server" class="img-rounded">
|
||||
<!--<p class="text-danger">As of v8.0, Safari exhibits a bug in which resizing your browser horizontally causes rendering errors in the justified nav that are cleared upon refreshing.</p>-->
|
||||
<p>We provide free FTP, PHP 5.3, MySQL and our very popular feature: The Automatic Script Installer Fantastico can install many popular scripts such as PHPbb2 and PHPbb3, Wordpress, Zen-Cart, osCommerce, MyBB, UseBB, MyLittle Forum, 4images, Coppermine, SMF, Joomla, e107, XOOPS, PHP Wind, CuteNews, Mambo, WikiWig and many more! No need to wait a long time uploading files, Our Automatic Script Installer deploys your files in seconds!.</p>
|
||||
</div>
|
||||
<div class="col-md-6">
|
||||
<h2>Quotas and forum</h2>
|
||||
<img src="images/img5.jpg" alt="server" class="img-rounded">
|
||||
<img src="assets/images/img5.jpg" alt="server" class="img-rounded">
|
||||
<p>Combined with our high bandwidth, space provisions and excellent sub-domain options, make us the optimal option. Our very popular Community Forums has been taken up excellently and active members are growing steadily, hence resulting in a better hosting and friendly experience..</p>
|
||||
<h3>Cluster servers</h3>
|
||||
<p>We are using a powerful cluster of webservers that are all interconnected to act as one giant super computer.</p>
|
||||
|
@ -55,4 +55,4 @@
|
|||
}
|
||||
})
|
||||
</script>
|
||||
<?php include ("footer.php"); ?>
|
||||
<?php include ("include/footer.php"); ?>
|
18
legal.php
Normal file
18
legal.php
Normal file
|
@ -0,0 +1,18 @@
|
|||
<?php
|
||||
define('IN_SYS', true);
|
||||
require_once "core.php";
|
||||
// $title = 'About UIISC';
|
||||
$section = empty($_GET["s"]) ? "terms" : $_GET["s"];
|
||||
|
||||
include("include/header.php");
|
||||
|
||||
switch ($section) {
|
||||
case "privacy":
|
||||
include("include/legal_privacy.php");
|
||||
break;
|
||||
case "terms":
|
||||
default:
|
||||
include("include/legal_terms.php");
|
||||
}
|
||||
|
||||
include("include/footer.php");
|
2
lib/index.php
Normal file
2
lib/index.php
Normal file
|
@ -0,0 +1,2 @@
|
|||
<?php
|
||||
header("Location: ../index.php");
|
|
@ -60,5 +60,7 @@ $LANG = array(
|
|||
'input-domain' => 'Please Input Domain',
|
||||
'support' => 'Support',
|
||||
'not-support' => 'Not Support',
|
||||
'more' => 'More'
|
||||
'more' => 'More',
|
||||
'about' => 'About',
|
||||
'aboutus' => 'About',
|
||||
);
|
|
@ -60,5 +60,7 @@ $LANG = array(
|
|||
'input-domain' => 'Please Input Domain',
|
||||
'support' => '지원됨',
|
||||
'not-support' => '지원 안함',
|
||||
'more' => '많은'
|
||||
'more' => '많은',
|
||||
'about' => '정보',
|
||||
'aboutus' => '회사 소개',
|
||||
);
|
|
@ -60,5 +60,7 @@ $LANG = array(
|
|||
"input-domain" => "请输入域名",
|
||||
'support' => '支持',
|
||||
'not-support' => '不支持',
|
||||
'more' => '更多'
|
||||
'more' => '更多',
|
||||
'about' => '关于',
|
||||
'aboutus' => '关于我们',
|
||||
);
|
|
@ -60,6 +60,8 @@ $LANG = array(
|
|||
'input-domain' => '請輸入域名',
|
||||
'support' => '支持',
|
||||
'not-support' => '不支持',
|
||||
'more' => '更多'
|
||||
'more' => '更多',
|
||||
'about' => '關於',
|
||||
'aboutus' => '關於我們',
|
||||
);
|
||||
|
|
@ -60,5 +60,7 @@ $LANG = array(
|
|||
"input-domain" => "请输入域名",
|
||||
'support' => '支持',
|
||||
'not-support' => '不支持',
|
||||
'more' => '更多'
|
||||
'more' => '更多',
|
||||
'about' => '关于',
|
||||
'aboutus' => '关于我们',
|
||||
);
|
|
@ -60,6 +60,6 @@ $LANG = array(
|
|||
'input-domain' => '請輸入域名',
|
||||
'support' => '支持',
|
||||
'not-support' => '不支持',
|
||||
'more' => '更多'
|
||||
'more' => '更多',
|
||||
'about' => '關於我們',
|
||||
);
|
||||
|
|
@ -3,7 +3,7 @@
|
|||
require_once ("core.php");
|
||||
$title = $title . ' - ' . $LANG['login'];
|
||||
?>
|
||||
<?php include ("header.php"); ?>
|
||||
<?php include ("include/header.php"); ?>
|
||||
|
||||
<div class="container">
|
||||
<div class="panel panel-default">
|
||||
|
@ -58,4 +58,4 @@
|
|||
change_language(x.target.dataset.language);
|
||||
})
|
||||
</script> -->
|
||||
<?php include ("footer.php"); ?>
|
||||
<?php include ("include/footer.php"); ?>
|
2
member/index.php
Normal file
2
member/index.php
Normal file
|
@ -0,0 +1,2 @@
|
|||
<?php
|
||||
echo "member";
|
4
news.php
4
news.php
|
@ -3,7 +3,7 @@
|
|||
require_once ("core.php");
|
||||
$title = $title . ' - ' . $LANG['news'];
|
||||
?>
|
||||
<?php include ("header.php"); ?>
|
||||
<?php include ("include/header.php"); ?>
|
||||
|
||||
<div class="container">
|
||||
<div class="panel panel-default">
|
||||
|
@ -52,4 +52,4 @@
|
|||
</div>
|
||||
</div>
|
||||
|
||||
<?php include ("footer.php"); ?>
|
||||
<?php include ("include/footer.php"); ?>
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
// preg_match('/<footer[^>]*id="footer"[^>]*>(.*?) <//footer>/si', $html, $match);
|
||||
$title = $title . ' - ' . $LANG['payment_methods'];
|
||||
?>
|
||||
<?php include ("header.php"); ?>
|
||||
<?php include ("include/header.php"); ?>
|
||||
|
||||
<div class="container">
|
||||
<div class="page-header">
|
||||
|
@ -76,4 +76,4 @@
|
|||
</div>
|
||||
</section>
|
||||
|
||||
<?php include ("footer.php"); ?>
|
||||
<?php include ("include/footer.php"); ?>
|
|
@ -4,7 +4,7 @@
|
|||
$security_id = md5(rand(6000, getrandmax())); // $security_id = md5(rand(6000,PHP_INT_MAX));
|
||||
$title = $title . ' - ' . $LANG['register'];
|
||||
?>
|
||||
<?php include ("header.php"); ?>
|
||||
<?php include ("include/header.php"); ?>
|
||||
|
||||
<div class="container">
|
||||
<div class="panel panel-default">
|
||||
|
@ -78,4 +78,4 @@
|
|||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<?php include "footer.php";?>
|
||||
<?php include "include/footer.php";?>
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
require_once "core.php";
|
||||
$title = $title . ' - ' . $LANG['solution'];
|
||||
?>
|
||||
<?php include ("header.php"); ?>
|
||||
<?php include ("include/header.php"); ?>
|
||||
|
||||
<div class="container">
|
||||
<div class="page-header">
|
||||
|
@ -102,4 +102,4 @@
|
|||
</div>
|
||||
</div>
|
||||
|
||||
<?php include "footer.php";?>
|
||||
<?php include "include/footer.php";?>
|
||||
|
|
Loading…
Reference in a new issue