update
This commit is contained in:
parent
20cb4e5379
commit
0affcc9a0a
19 changed files with 640 additions and 598 deletions
16
contact.php
16
contact.php
|
@ -11,30 +11,24 @@
|
|||
</head>
|
||||
<body>
|
||||
<?php include ("nav.php"); ?>
|
||||
<div class="bs-docs-header">
|
||||
<div class="container">
|
||||
<h1><?php echo $LANG['contact_us']; ?></h1>
|
||||
<p><?php echo $LANG['contact_us']; ?></p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
<section class="section-wrap">
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
<div class="hidden-xs col-sm-12 col-md-12 termsHead">
|
||||
<h1><?php echo $LANG['contact_us']; ?></h1>
|
||||
</div>
|
||||
<div class="col-sm-12 col-md-12">
|
||||
<h2>Contact</h2>
|
||||
<p>If you have any problems or have the need to contact us to ask a question,
|
||||
you can use the <span>integrated support system</span> in your control panel to create a support ticket.</p>
|
||||
<p>We will reply to your question as soon as possible.</p>
|
||||
<p>For technical support please look at the <a href="mailto:doudoudzj@sina.com" target="_blank">Email Support</a></p>
|
||||
<p>For technical support please look at the <a href="http://byet.net/forumdisplay.php?f=28" target="_blank">Knowledge Base</a></p>
|
||||
</div>
|
||||
<div class="col-sm-12 col-md-12">
|
||||
<h2><?php echo $LANG['address']; ?></h2>
|
||||
<p>Yangpu, Shanghai China.</p>
|
||||
<address>
|
||||
<p>doudoudzj@sina.com</p>
|
||||
</address>
|
||||
<p>Shanghai China.</p>
|
||||
</div>
|
||||
<div class="col-sm-12 col-md-12">
|
||||
<h2>Others</h2>
|
||||
|
|
47
core.php
47
core.php
|
@ -1,8 +1,8 @@
|
|||
<?php
|
||||
if(!defined('IN_SYS')) {
|
||||
// exit('禁止访问');
|
||||
header("Location:"."index.php");
|
||||
exit;
|
||||
if (!defined('IN_SYS')) {
|
||||
// exit('禁止访问');
|
||||
header("Location: index.php");
|
||||
exit;
|
||||
}
|
||||
include_once 'lang.php';
|
||||
$title = "UIISC";
|
||||
|
@ -11,23 +11,24 @@ $author = 'Crogram Inc.';
|
|||
$description = "uiisc, freewebhost, webhost, Crogram";
|
||||
$rooturl = $_SERVER['HTTP_HOST'];
|
||||
$domain = preg_replace('/^www\./', '', $rooturl);
|
||||
$static_release = "crogram_build_20161230";
|
||||
function curlrequest($url, $data, $method="post") {
|
||||
$ch = curl_init(); // 初始化CURL句柄
|
||||
curl_setopt($ch, CURLOPT_URL, $url); // 设置请求的URL
|
||||
curl_setopt($ch, CURLOPT_RETURNTRANSFER,1); // 设为TRUE把curl_exec()结果转化为字串,而不是直接输出
|
||||
curl_setopt($ch, CURLOPT_CUSTOMREQUEST, $method); // 设置请求方式
|
||||
curl_setopt($ch, CURLOPT_REFERER,$url); // 构造来路
|
||||
curl_setopt($ch, CURLOPT_HTTPHEADER,array("X-HTTP-Method-Override: $method")); // 设置HTTP头信息
|
||||
curl_setopt($ch, CURLOPT_POSTFIELDS, $data); // 设置提交的字符串
|
||||
$document = curl_exec($ch); // 执行预定义的CURL
|
||||
if(!curl_errno($ch)) {
|
||||
$info = curl_getinfo($ch);
|
||||
echo 'Took ' . $info['total_time'] . ' seconds to send a request to ' . $info['url'];
|
||||
} else {
|
||||
echo 'Curl error: ' . curl_error($ch);
|
||||
}
|
||||
curl_close($ch);
|
||||
// $document=preg_replace("/[\t\n\r]+/","",$document);
|
||||
return $document;
|
||||
$static_release = "crogram_build_20181116";
|
||||
function curlrequest($url, $data, $method = "post")
|
||||
{
|
||||
$ch = curl_init(); // 初始化CURL句柄
|
||||
curl_setopt($ch, CURLOPT_URL, $url); // 设置请求的URL
|
||||
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); // 设为TRUE把curl_exec()结果转化为字串,而不是直接输出
|
||||
curl_setopt($ch, CURLOPT_CUSTOMREQUEST, $method); // 设置请求方式
|
||||
curl_setopt($ch, CURLOPT_REFERER, $url); // 构造来路
|
||||
curl_setopt($ch, CURLOPT_HTTPHEADER, array("X-HTTP-Method-Override: $method")); // 设置HTTP头信息
|
||||
curl_setopt($ch, CURLOPT_POSTFIELDS, $data); // 设置提交的字符串
|
||||
$document = curl_exec($ch); // 执行预定义的CURL
|
||||
if (!curl_errno($ch)) {
|
||||
$info = curl_getinfo($ch);
|
||||
echo 'Took ' . $info['total_time'] . ' seconds to send a request to ' . $info['url'];
|
||||
} else {
|
||||
echo 'Curl error: ' . curl_error($ch);
|
||||
}
|
||||
curl_close($ch);
|
||||
// $document=preg_replace("/[\t\n\r]+/","",$document);
|
||||
return $document;
|
||||
}
|
||||
|
|
|
@ -13,7 +13,7 @@ button {
|
|||
}
|
||||
|
||||
body {
|
||||
padding-top: 51px;
|
||||
padding-top: 20px;
|
||||
padding-bottom: 100px;
|
||||
line-height: 1.5;
|
||||
color: #000;
|
||||
|
|
94
footer.php
94
footer.php
|
@ -1,52 +1,52 @@
|
|||
<?php
|
||||
if(!defined('IN_SYS')) {
|
||||
if (!defined('IN_SYS')) {
|
||||
// exit('禁止访问');
|
||||
header("Location:"."index.php");
|
||||
header("Location: index.php");
|
||||
exit;
|
||||
}
|
||||
}
|
||||
?>
|
||||
|
||||
<footer class="navbar navbar-default navbar-fixed-bottom footer">
|
||||
<div class="container">
|
||||
<div class="navbar-inner navbar-content-center" style="padding-top:15px;">
|
||||
<ul class="navbar-left list-inline text-center text-muted credit">
|
||||
<li>
|
||||
© 2018 <a href="./index.php"><?=$title_s?></a>
|
||||
Powered by <a href="https://crogram.com" target="blank">Crogram</a> & <a href="https://ifastnet.com" target="blank">iFastNet</a>
|
||||
</li>
|
||||
</ul>
|
||||
<ul class="legal navbar-right list-inline text-center">
|
||||
<li class="dropup">
|
||||
<div class="dropdown-toggle" id="changelanguage" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||
<span class="glyphicon glyphicon-globe"></span>
|
||||
<a href="#"><?php echo $languages[$current_language]; ?></a>
|
||||
</div>
|
||||
<ul class="dropdown-menu" aria-labelledby="changelanguage">
|
||||
<?php foreach($languages as $key=>$value){
|
||||
echo '<li><a href="javascript://" onclick="change_language(\'',$key,'\')">',$languages[$key],'</a></li>';
|
||||
}?>
|
||||
</ul>
|
||||
</li>
|
||||
<li><a href="contact.php"><?php echo $LANG['contact_us']; ?></a></li>
|
||||
<li><a href="help.php"><?php echo $LANG['help']; ?></a></li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
<script src="./js/jquery.min.js"></script>
|
||||
<script src="./js/bootstrap.min.js"></script>
|
||||
<script src="./js/ie10-viewport-bug-workaround.js"></script>
|
||||
<script src="./js/common.js?_=<?=$static_release?>"></script>
|
||||
<script type="text/javascript">
|
||||
var domain = "<?php echo $lang->getDomain();?>";
|
||||
var cur_language = "<?php echo $current_language;?>";
|
||||
function change_language(lan) {
|
||||
setCookie('lang', lan, 1, '/', domain, false);
|
||||
if (cur_language == lan) {
|
||||
return;
|
||||
}
|
||||
<?php if(!$_POST) { ?>
|
||||
document.location.reload();
|
||||
<?php } ?>
|
||||
}
|
||||
</script>
|
||||
<footer class="navbar navbar-default navbar-fixed-bottom">
|
||||
<div class="container">
|
||||
<div class="navbar-inner navbar-content-center" style="padding-top:15px;">
|
||||
<ul class="navbar-left list-inline text-center text-muted credit">
|
||||
<li>
|
||||
© 2018 <a href="/index.php"><?=$title_s?></a>
|
||||
Powered By <a href="https://crogram.com" target="blank">Crogram</a> & <a href="https://ifastnet.com" target="blank">iFastNet</a>
|
||||
</li>
|
||||
</ul>
|
||||
<ul class="legal navbar-right list-inline text-center">
|
||||
<li class="dropup">
|
||||
<div class="dropdown-toggle" id="changelanguage" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||
<span class="glyphicon glyphicon-globe"></span>
|
||||
<a href="#"><?php echo $languages[$current_language]; ?></a>
|
||||
</div>
|
||||
<ul class="dropdown-menu" aria-labelledby="changelanguage">
|
||||
<?php foreach ($languages as $key => $value) {
|
||||
echo '<li><a href="javascript://" onclick="change_language(\'', $key, '\')">', $languages[$key], '</a></li>';
|
||||
}?>
|
||||
</ul>
|
||||
</li>
|
||||
<li><a href="/contact.php"><?php echo $LANG['contact_us']; ?></a></li>
|
||||
<li><a href="/help.php"><?php echo $LANG['help']; ?></a></li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
<script src="./js/jquery.min.js"></script>
|
||||
<script src="./js/bootstrap.min.js"></script>
|
||||
<script src="./js/ie10-viewport-bug-workaround.js"></script>
|
||||
<script src="./js/common.js?_=<?php echo $static_release; ?>"></script>
|
||||
<script type="text/javascript">
|
||||
var domain = "<?php echo $lang->getDomain(); ?>";
|
||||
var cur_language = "<?php echo $current_language; ?>";
|
||||
function change_language(lan) {
|
||||
setCookie('lang', lan, 1, '/', domain, false);
|
||||
if (cur_language == lan) {
|
||||
return;
|
||||
}
|
||||
<?php if (!$_POST) {?>
|
||||
document.location.reload();
|
||||
<?php }?>
|
||||
}
|
||||
</script>
|
25
headmate.php
25
headmate.php
|
@ -1,18 +1,13 @@
|
|||
<?php
|
||||
if(!defined('IN_SYS')) {
|
||||
// exit('禁止访问');
|
||||
header("Location:"."index.php");
|
||||
exit;
|
||||
}
|
||||
?>
|
||||
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<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="<?=$description?>">
|
||||
<meta name="author" content="<?=$author?>">
|
||||
<link href="favicon.ico?_=<?=$static_release?>" rel="icon">
|
||||
<link href="./css/bootstrap.min.css?_=<?=$static_release?>" rel="stylesheet">
|
||||
<link href="./css/style.css?_=<?=$static_release?>" rel="stylesheet">
|
||||
<script src="./js/ie-emulation-modes-warning.js?_=<?=$static_release?>"></script><!--[if lt IE 9]>
|
||||
<script src="./js/html5shiv.min.js"></script>
|
||||
<script src="./js/respond.min.js"></script><![endif]-->
|
||||
<meta name="description" content="<?php echo $description; ?>">
|
||||
<meta name="author" content="<?php echo $author; ?>">
|
||||
<link href="/favicon.ico?_=<?php echo $static_release; ?>" rel="icon">
|
||||
<link href="/css/bootstrap.min.css?_=<?php echo $static_release; ?>" rel="stylesheet">
|
||||
<link href="/css/style.css?_=<?php echo $static_release; ?>" rel="stylesheet">
|
||||
<script src="/js/ie-emulation-modes-warning.js?_=<?php echo $static_release; ?>"></script>
|
||||
<!--[if lt IE 9]>
|
||||
<script src="/js/html5shiv.min.js"></script>
|
||||
<script src="/js/respond.min.js"></script>
|
||||
<![endif]-->
|
34
help.php
34
help.php
|
@ -12,27 +12,27 @@
|
|||
<body>
|
||||
<?php include ("nav.php"); ?>
|
||||
<div class="bs-docs-header">
|
||||
<div class="container">
|
||||
<h1><?php echo $LANG['help']; ?></h1>
|
||||
<p><?php echo $LANG['help']; ?></p>
|
||||
</div>
|
||||
<div class="container">
|
||||
<h1><?php echo $LANG['help']; ?></h1>
|
||||
<p><?php echo $LANG['help']; ?></p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
<div class="row">
|
||||
<section class="section-wrap">
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
<div class="col-sm-12 col-md-12">
|
||||
<h2><?php echo $LANG['help']; ?></h2>
|
||||
<p>If you have any problems or have the need to contact us to ask a question,
|
||||
you can use the <span>integrated support system</span> in your control panel to create a support ticket.</p>
|
||||
<p>We will reply to your question as soon as possible.</p>
|
||||
<p>For technical support please look at the <a href="mailto:doudoudzj@sina.com" target="_blank">Email Support</a></p>
|
||||
</div>
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
<div class="col-sm-12 col-md-12">
|
||||
<h2><?php echo $LANG['help']; ?></h2>
|
||||
<p>If you have any problems or have the need to contact us to ask a question,
|
||||
you can use the <span>integrated support system</span> in your control panel to create a support ticket.</p>
|
||||
<p>We will reply to your question as soon as possible.</p>
|
||||
<p>For technical support please look at the <a href="mailto:doudoudzj@sina.com" target="_blank">Email Support</a></p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
</div>
|
||||
</section>
|
||||
</div>
|
||||
</div>
|
||||
<?php include ("footer.php"); ?>
|
||||
</body>
|
||||
|
|
|
@ -1,59 +1,59 @@
|
|||
<?php
|
||||
$LANG = array(
|
||||
'language' => 'Chinese_simplified',
|
||||
'home' => '主页',
|
||||
'solution' => '方案',
|
||||
'news' => '新闻',
|
||||
'contact' => '联系',
|
||||
'contact_us' => '联系我们',
|
||||
'help' => '帮助',
|
||||
'login' => '登录',
|
||||
'register' => '注册',
|
||||
'username' => '用户名',
|
||||
'input_username' => '请输入用户名',
|
||||
'password' => '密码',
|
||||
'input_password' => '请输入密码',
|
||||
'email' => '电子邮箱地址',
|
||||
'input_email' => '请输入电子邮箱地址',
|
||||
'site_category' => '网站类型',
|
||||
'personal' => '个人',
|
||||
'business' => '商业',
|
||||
'hobby' => '爱好',
|
||||
'forum' => '论坛',
|
||||
'adult' => '成人',
|
||||
'dating' => '约会',
|
||||
'software_download' => '软件/下载',
|
||||
'choose_from_below' => '下拉选择',
|
||||
'site_language' => '网站语言',
|
||||
'english' => '英文',
|
||||
'non_english' => '非英文',
|
||||
'security_code' => '验证码',
|
||||
'input_security_code' => '输入验证码',
|
||||
'input_security_code_above' => '请输入上面图中验证码',
|
||||
'legal_information' => '法律信息',
|
||||
'privacy_policy' => '隐私政策',
|
||||
'tos' => '服务条款',
|
||||
'cancellation_refund' => '取消与退款',
|
||||
'payment_methods' => '支付方式',
|
||||
'signup_free_hosting' => '注册免费空间',
|
||||
'remember_me' => '记住我',
|
||||
'please_login' => '请登录',
|
||||
'lost_password' => '忘记密码了?',
|
||||
'address' => '地址',
|
||||
'host-plan' => '主机方案',
|
||||
'host-plan-free' => '免费主机',
|
||||
'host-plan-paid' => '收费主机',
|
||||
'ftp-accounts' => 'FTP账号',
|
||||
'sub-domains' => '子域名',
|
||||
'add-on-domains' => '绑定域名',
|
||||
'parked-domains' => '停放域名',
|
||||
'mysql-databases' => 'MySQL数据库',
|
||||
'disk-quota' => '总空间配额',
|
||||
'bandwidth' => '流量配额',
|
||||
'daily-hits' => '每日点击配额',
|
||||
'host-inodes' => '使用Inode配额',
|
||||
'unlimited' => '无限',
|
||||
'resetpassword' => '找回密码',
|
||||
'domain' => '域名',
|
||||
'input_domain' => '请输入域名',
|
||||
"language" => "Chinese_simplified",
|
||||
"home" => "主页",
|
||||
"solution" => "方案",
|
||||
"news" => "新闻",
|
||||
"contact" => "联系",
|
||||
"contact_us" => "联系我们",
|
||||
"help" => "帮助",
|
||||
"login" => "登录",
|
||||
"register" => "注册",
|
||||
"username" => "用户名",
|
||||
"input_username" => "请输入用户名",
|
||||
"password" => "密码",
|
||||
"input_password" => "请输入密码",
|
||||
"email" => "电子邮箱地址",
|
||||
"input_email" => "请输入电子邮箱地址",
|
||||
"site_category" => "网站类型",
|
||||
"personal" => "个人",
|
||||
"business" => "商业",
|
||||
"hobby" => "爱好",
|
||||
"forum" => "论坛",
|
||||
"adult" => "成人",
|
||||
"dating" => "约会",
|
||||
"software_download" => "软件/下载",
|
||||
"choose_from_below" => "下拉选择",
|
||||
"site_language" => "网站语言",
|
||||
"english" => "英文",
|
||||
"non_english" => "非英文",
|
||||
"security_code" => "验证码",
|
||||
"input_security_code" => "输入验证码",
|
||||
"input_security_code_above" => "请输入上面图中验证码",
|
||||
"legal_information" => "法律信息",
|
||||
"privacy_policy" => "隐私政策",
|
||||
"tos" => "服务条款",
|
||||
"cancellation_refund" => "取消与退款",
|
||||
"payment_methods" => "支付方式",
|
||||
"signup_free_hosting" => "注册免费空间",
|
||||
"remember_me" => "记住我",
|
||||
"please_login" => "请登录",
|
||||
"lost_password" => "忘记密码了?",
|
||||
"address" => "地址",
|
||||
"host-plan" => "主机方案",
|
||||
"host-plan-free" => "免费主机",
|
||||
"host-plan-paid" => "收费主机",
|
||||
"ftp-accounts" => "FTP账号",
|
||||
"sub-domains" => "子域名",
|
||||
"add-on-domains" => "绑定域名",
|
||||
"parked-domains" => "停放域名",
|
||||
"mysql-databases" => "MySQL数据库",
|
||||
"disk-quota" => "总空间配额",
|
||||
"bandwidth" => "流量配额",
|
||||
"daily-hits" => "每日点击配额",
|
||||
"host-inodes" => "使用Inode配额",
|
||||
"unlimited" => "无限",
|
||||
"resetpassword" => "找回密码",
|
||||
"domain" => "域名",
|
||||
"input_domain" => "请输入域名",
|
||||
);
|
||||
|
|
106
index.php
106
index.php
|
@ -9,76 +9,62 @@
|
|||
<title><?=$title?></title>
|
||||
<?php include ("headmate.php"); ?>
|
||||
</head>
|
||||
<body class="fixed-header-on">
|
||||
<?php include ("nav.php"); ?>
|
||||
<body>
|
||||
<?php include ("nav.php"); ?>
|
||||
|
||||
<div class="home">
|
||||
<div class="container home-banner">
|
||||
<div class="form-group form-domain">
|
||||
<div class="input-group input-group-lg">
|
||||
<!-- <span class="input-group-addon">www</span> -->
|
||||
<input type="text" class="form-control" id="domainInput" placeholder="DomainName">
|
||||
<span class="input-group-btn">
|
||||
<input type="button" class="btn btn-lg btn-default check-domain" value="Start" />
|
||||
</span>
|
||||
</div>
|
||||
<div class="container">
|
||||
<div class="jumbotron">
|
||||
<h1>Instant activation</h1>
|
||||
<p>Free hosting accounts are activated instantly, no need to wait for manual approval, you can start building your pages immediately! A powerful Vista Panel control panel is provided to manage your website, packed with hundreds of great features including Email, FTP add-on domain ...</p>
|
||||
<p>
|
||||
<a class="btn btn-lg btn-primary" href="./signup.php" role="button">More »</a>
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
<div class="col-md-6">
|
||||
<h2>Automated features!</h2>
|
||||
<img src="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 class="form-group">
|
||||
<label for="domainInput">Domain</label>
|
||||
<input type="text" class="form-control" id="domainInput" placeholder="uiisc.com">
|
||||
<input type="button" class="btn btn-default check-domain" value="Check" />
|
||||
</div>
|
||||
<div class="col-md-6">
|
||||
<h2>Quotas and forum</h2>
|
||||
<img src="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>
|
||||
</div>
|
||||
</div>
|
||||
<button class="btn btn-default check-domain">Check</button>
|
||||
</div>
|
||||
|
||||
<?php include ("footer.php"); ?>
|
||||
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
<div class="col-md-6">
|
||||
<h2>Automated features!</h2>
|
||||
<img src="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">
|
||||
<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>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<?php include ("footer.php"); ?>
|
||||
<script type="text/javascript">
|
||||
window.onscroll = function () {
|
||||
var a = document.documentElement.scrollTop || document.body.scrollTop;//滚动条y轴上的距离
|
||||
if (a > 0) {
|
||||
$('body').removeClass('fixed-header-on');
|
||||
} else {
|
||||
$('body').addClass('fixed-header-on');
|
||||
}
|
||||
}
|
||||
$('.check-domain').click(function () {
|
||||
subCheck();
|
||||
});
|
||||
$('#domainInput').keyup(function(event){
|
||||
if(event.keyCode == 13) {
|
||||
subCheck();
|
||||
}
|
||||
});
|
||||
function subCheck () {
|
||||
$('.check-domain').click(function () {
|
||||
var domain = $('#domainInput').val()
|
||||
if (domain) {
|
||||
$.ajax({
|
||||
type: 'post',
|
||||
url: 'https://api.croidc.cn/mofh/DomainCheck',
|
||||
dataType: 'json',
|
||||
contentType : "application/json",
|
||||
data: JSON.stringify({
|
||||
domain: domain
|
||||
}),
|
||||
success: function (x) {
|
||||
console.log(x);
|
||||
}
|
||||
})
|
||||
$.ajax({
|
||||
method: 'post',
|
||||
url: 'https://api.croidc.cn/mofh/DomainCheck',
|
||||
dataType: 'json',
|
||||
contentType : "application/json",
|
||||
data: JSON.stringify({
|
||||
domain: domain
|
||||
}),
|
||||
success: function (x) {
|
||||
console.log(x);
|
||||
}
|
||||
})
|
||||
}
|
||||
}
|
||||
})
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
|
@ -13,22 +13,14 @@
|
|||
</head>
|
||||
<body>
|
||||
<?php include ("nav.php"); ?>
|
||||
|
||||
<div class="bs-docs-header">
|
||||
<div class="container">
|
||||
<h1>Cancelation policy & Refund policy</h1>
|
||||
<p>Cancelation & refund information</p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
<!-- <section class="section-wrap title">
|
||||
<section class="section-wrap title">
|
||||
<div class="container">
|
||||
<h2 class="text-center">Cancelation policy & Refund policy</h2>
|
||||
<p class="text-center">Cancelation & refund information</p>
|
||||
</div>
|
||||
</section> -->
|
||||
</section>
|
||||
<section class="section-wrap cancelationInfo">
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
|
|
|
@ -13,22 +13,14 @@
|
|||
</head>
|
||||
<body>
|
||||
<?php include ("nav.php"); ?>
|
||||
|
||||
<div class="bs-docs-header">
|
||||
<div class="container">
|
||||
<h1><?php echo $LANG['payment_methods']; ?></h1>
|
||||
<p>Payment methods information</p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
<!-- <section class="section-wrap title">
|
||||
<section class="section-wrap title">
|
||||
<div class="container">
|
||||
<h2 class="text-center"><?php echo $LANG['payment_methods']; ?></h2>
|
||||
<p class="text-center">Payment methods information</p>
|
||||
</div>
|
||||
</section> -->
|
||||
</section>
|
||||
<section class="section-wrap paymentsInfo">
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
|
|
|
@ -14,21 +14,21 @@
|
|||
<body>
|
||||
<?php include ("nav.php"); ?>
|
||||
|
||||
<div class="bs-docs-header">
|
||||
<!-- <div class="bs-docs-header">
|
||||
<div class="container">
|
||||
<h1><?php echo $LANG['privacy_policy']; ?></h1>
|
||||
<p>Privacy policy information</p>
|
||||
</div>
|
||||
</div>
|
||||
</div> -->
|
||||
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
<!-- <section class="section-wrap title">
|
||||
<section class="section-wrap title">
|
||||
<div class="container">
|
||||
<h2 class="text-center"><?php echo $LANG['privacy_policy']; ?></h2>
|
||||
<p class="text-center">Privacy policy information</p>
|
||||
</div>
|
||||
</section> -->
|
||||
</section>
|
||||
<section class="section-wrap privacyInfo">
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
|
|
|
@ -13,21 +13,21 @@
|
|||
</head>
|
||||
<body>
|
||||
<?php include ("nav.php"); ?>
|
||||
<div class="bs-docs-header">
|
||||
<!-- <div class="bs-docs-header">
|
||||
<div class="container">
|
||||
<h1><?php echo $LANG['tos']; ?></h1>
|
||||
<p>Service conditions and policies</p>
|
||||
<h1><?php echo $LANG['tos']; ?></h1>
|
||||
<p>Service conditions and policies</p>
|
||||
</div>
|
||||
</div>
|
||||
</div> -->
|
||||
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
<!-- <section class="section-wrap title">
|
||||
<section class="section-wrap title">
|
||||
<div class="container">
|
||||
<h2 class="text-center"><?php echo $LANG['tos']; ?></h2>
|
||||
<p class="text-center">Service conditions and policies</p>
|
||||
</div>
|
||||
</section> -->
|
||||
</section>
|
||||
<section class="section-wrap termsInfo">
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
|
|
44
login.php
44
login.php
|
@ -5,40 +5,30 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="<?php echo $current_language; ?>">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<title><?=$title?> - <?php echo $LANG['login']; ?></title>
|
||||
<?php include ("headmate.php"); ?>
|
||||
<meta charset="utf-8">
|
||||
<title><?=$title?> - <?php echo $LANG['login']; ?></title>
|
||||
<?php include ("headmate.php"); ?>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<?php include ("nav.php"); ?>
|
||||
|
||||
<div class="bs-docs-header">
|
||||
<div class="container">
|
||||
<h1><?php echo $LANG['please_login']; ?></h1>
|
||||
<p>Enter your Username and Password</p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="container">
|
||||
<form class="form-group form-horizontal form-account" role="form" action="//cpanel.<?=$domain?>/login.php" method="post" name="login">
|
||||
<div class="form-group">
|
||||
<label for="inputUsername" class="control-label">Username</label>
|
||||
<input type="text" name="uname" class="form-control" id="inputUsername" placeholder="<?php echo $LANG['input_username']; ?>" required autofocus>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label for="inputPassword" class="control-label">Password</label>
|
||||
<input type="password" name="passwd" class="form-control" id="inputPassword" placeholder="<?php echo $LANG['input_password']; ?>" required autofocus>
|
||||
</div>
|
||||
<input type="hidden" name="language" value="<?php echo $LANG['language']; ?>">
|
||||
<div class="form-group">
|
||||
<label><input type="checkbox" value="remember-me"> <span><?php echo $LANG['remember_me']; ?></span></label>
|
||||
<label><a href="resetpass.php"><?php echo $LANG['lost_password']; ?></a></label>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
|
||||
<div class="container">
|
||||
<form class="form-signin" role="form" action="//cpanel.<?=$domain?>/login.php" method="post" name="login">
|
||||
<h2 class="form-signin-heading"><?php echo $LANG['please_login']; ?></h2>
|
||||
<input type="text" name="uname" class="form-control" placeholder="<?php echo $LANG['input_username']; ?>" required autofocus>
|
||||
<input type="password" name="passwd" class="form-control" placeholder="<?php echo $LANG['input_password']; ?>" required>
|
||||
<input type="hidden" name="language" value="<?php echo $LANG['language']; ?>">
|
||||
<div class="checkbox">
|
||||
<label>
|
||||
<input type="checkbox" value="remember-me"><span><?php echo $LANG['remember_me']; ?></span>
|
||||
<a href="//cpanel.<?=$domain?>/lostpassword.php"><?php echo $LANG['lost_password']; ?></a>
|
||||
</label>
|
||||
</div>
|
||||
<button type="submit" name="submit" class="btn btn-lg btn-primary btn-block"><?php echo $LANG['login']; ?></button>
|
||||
</div>
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<?php include ("footer.php"); ?>
|
||||
|
||||
|
|
75
nav.php
75
nav.php
|
@ -1,46 +1,47 @@
|
|||
<?php
|
||||
if(!defined('IN_SYS')) {
|
||||
// exit('禁止访问');
|
||||
header("Location:"."index.php");
|
||||
header("Location: index.php");
|
||||
exit;
|
||||
}
|
||||
?>
|
||||
|
||||
<nav class="navbar navbar-default navbar-fixed-top header" role="navigation">
|
||||
<div class="container">
|
||||
<div class="navbar-header">
|
||||
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navbar" aria-expanded="false" aria-controls="navbar">
|
||||
<span class="sr-only">Navigation</span>
|
||||
<span class="icon-bar"></span>
|
||||
<span class="icon-bar"></span>
|
||||
<span class="icon-bar"></span>
|
||||
</button>
|
||||
<a class="navbar-brand" href="index.php"><?=$title_s?></a>
|
||||
</div>
|
||||
<div id="navbar" class="navbar-collapse collapse">
|
||||
<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="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">About <span class="caret"></span></a>
|
||||
<ul class="dropdown-menu" role="menu">
|
||||
<li><a href="about_uiisc.php">UIISC</a></li>
|
||||
<li><a href="about_crogram.php">CROGRAM</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>
|
||||
<div class="container">
|
||||
<nav class="navbar navbar-default" role="navigation">
|
||||
<div class="container-fluid">
|
||||
<div class="navbar-header">
|
||||
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navbar" aria-expanded="false" aria-controls="navbar">
|
||||
<span class="sr-only">Navigation</span>
|
||||
<span class="icon-bar"></span>
|
||||
<span class="icon-bar"></span>
|
||||
<span class="icon-bar"></span>
|
||||
</button>
|
||||
<a class="navbar-brand" href="javascript:void(0);"><?php echo $title_s; ?></a>
|
||||
</div>
|
||||
<div id="navbar" class="navbar-collapse collapse">
|
||||
<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="/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">Others <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 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>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
<ul class="nav navbar-nav navbar-right">
|
||||
<li><a href="./login.php"><?php echo $LANG['login']; ?></a></li>
|
||||
<li><a href="./register.php"><?php echo $LANG['register']; ?></a></li>
|
||||
</ul>
|
||||
<ul class="nav navbar-nav navbar-right">
|
||||
<li><a href="/login.php"><?php echo $LANG['login']; ?></a></li>
|
||||
<li><a href="/register.php"><?php echo $LANG['register']; ?></a></li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</nav>
|
||||
</div>
|
||||
|
|
244
register.php
244
register.php
|
@ -1,182 +1,90 @@
|
|||
<?php
|
||||
define('IN_SYS', true);
|
||||
require_once ("core.php");
|
||||
$security_id = md5(rand(6000,getrandmax())); // $security_id = md5(rand(6000,PHP_INT_MAX));
|
||||
define('IN_SYS', true);
|
||||
require_once "core.php";
|
||||
$security_id = md5(rand(6000, getrandmax())); // $security_id = md5(rand(6000,PHP_INT_MAX));
|
||||
?>
|
||||
<!DOCTYPE html>
|
||||
<html lang="<?php echo $current_language; ?>">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<title><?=$title?> - <?php echo $LANG['register']; ?></title>
|
||||
<?php include ("headmate.php"); ?>
|
||||
<meta charset="utf-8">
|
||||
<title><?=$title?> - <?php echo $LANG['register']; ?></title>
|
||||
<?php include "headmate.php";?>
|
||||
</head>
|
||||
<body>
|
||||
<?php include ("nav.php"); ?>
|
||||
<div class="bs-docs-header">
|
||||
<div class="container">
|
||||
<h1><?php echo $LANG['signup_free_hosting']; ?></h1>
|
||||
<p>You can sign up here for fast free PHP & MySQL hosting including a free sub domain. Fill out the form below and your free hosting account will be created. <em>Enjoy :)</em></p>
|
||||
</div>
|
||||
</div>
|
||||
<?php include "nav.php";?>
|
||||
|
||||
<div class="container">
|
||||
<div class="form-group form-horizontal form-account">
|
||||
<input type="hidden" name="plan_name" value="free webhosting">
|
||||
<div class="form-group">
|
||||
<label for="inputUsername" class="control-label"><?php echo $LANG['username']; ?></label>
|
||||
<input type="text" name="username" class="form-control" id="inputUsername" placeholder="<?php echo $LANG['input_username']; ?>" value="<?php if (isset($_GET['username'])) { echo $_GET['username']; }?>">
|
||||
<div class="panel panel-default">
|
||||
<div class="panel-heading">
|
||||
<h3 class="panel-title"><?php echo $LANG['signup_free_hosting']; ?></h3>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label for="inputDomain" class="control-label"><?php echo $LANG['domain']; ?></label>
|
||||
<input type="text" name="domain" class="form-control" id="inputDomain" placeholder="<?php echo $LANG['input_domain']; ?>" value="<?php if (isset($_GET['domain'])) { echo $_GET['domain']; }?>">
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label for="inputPassword" class="control-label"><?php echo $LANG['password']; ?></label>
|
||||
<input type="password" name="password" class="form-control" id="inputPassword" placeholder="<?php echo $LANG['input_password']; ?>">
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label for="inputEmail" class="control-label"><?php echo $LANG['email']; ?></label>
|
||||
<input type="email" name="email" class="form-control" id="inputEmail" placeholder="<?php echo $LANG['input_email']; ?>" value="<?php if (isset($_GET['email'])) { echo $_GET['email']; }?>">
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label for="inputCategory" class="control-label"><?php echo $LANG['site_category']; ?></label>
|
||||
<select class="form-control" name="website_category" id="inputCategory">
|
||||
<option><?php echo $LANG['choose_from_below']; ?></option>
|
||||
<option><?php echo $LANG['personal']; ?></option>
|
||||
<option><?php echo $LANG['business']; ?></option>
|
||||
<option><?php echo $LANG['hobby']; ?></option>
|
||||
<option><?php echo $LANG['forum']; ?></option>
|
||||
<option><?php echo $LANG['dating']; ?></option>
|
||||
<option><?php echo $LANG['software_download']; ?></option>
|
||||
</select>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label for="inputLanguage" class="control-label"><?php echo $LANG['site_language']; ?></label>
|
||||
<select class="form-control" name="website_language" id="inputLanguage">
|
||||
<option><?php echo $LANG['choose_from_below']; ?></option>
|
||||
<!-- <option data-i18n="english">English</option> -->
|
||||
<!-- <option data-i18n="non_english">Non-English</option> -->
|
||||
<option selected="selected" value="English">Auto: English</option>
|
||||
<option>Afrikaans</option>
|
||||
<option>Albanian</option>
|
||||
<option>Amharic</option>
|
||||
<option>Arabic</option>
|
||||
<option>Armenian</option>
|
||||
<option>Azeerbaijani</option>
|
||||
<option>Basque</option>
|
||||
<option>Belarusian</option>
|
||||
<option>Bengali</option>
|
||||
<option>Bosnian</option>
|
||||
<option>Bulgarian</option>
|
||||
<option>Burmese</option>
|
||||
<option>Catalan</option>
|
||||
<option>Cebuano</option>
|
||||
<option>Chichewa</option>
|
||||
<option>Chinese_simplified</option>
|
||||
<option>Chinese_traditional</option>
|
||||
<option>Corsican</option>
|
||||
<option>Croatian</option>
|
||||
<option>Czech</option>
|
||||
<option>Danish</option>
|
||||
<option>Dutch</option>
|
||||
<option>English</option>
|
||||
<option>Esperanto</option>
|
||||
<option>Estonian</option>
|
||||
<option>Farsi</option>
|
||||
<option>Filipino</option>
|
||||
<option>Finnish</option>
|
||||
<option>French</option>
|
||||
<option>Frisian</option>
|
||||
<option>Galician</option>
|
||||
<option>Georgian</option>
|
||||
<option>German</option>
|
||||
<option>Greek</option>
|
||||
<option>Gujarati</option>
|
||||
<option>Haitian Creole</option>
|
||||
<option>Hausa</option>
|
||||
<option>Hawaiian</option>
|
||||
<option>Hebrew</option>
|
||||
<option>Hindi</option>
|
||||
<option>Hmong</option>
|
||||
<option>Hungarian</option>
|
||||
<option>Icelandic</option>
|
||||
<option>Igbo</option>
|
||||
<option>Indonesian</option>
|
||||
<option>Irish</option>
|
||||
<option>Italian</option>
|
||||
<option>Japanese</option>
|
||||
<option>Javanese</option>
|
||||
<option>Kannada</option>
|
||||
<option>Kazakh</option>
|
||||
<option>Khmer</option>
|
||||
<option>Korean</option>
|
||||
<option>Kurdish</option>
|
||||
<option>Kyrgyz</option>
|
||||
<option>Lao</option>
|
||||
<option>Latin</option>
|
||||
<option>Latvian</option>
|
||||
<option>Lithuanian</option>
|
||||
<option>Luxembourgish</option>
|
||||
<option>Macedonian</option>
|
||||
<option>Malagasy</option>
|
||||
<option>Malay</option>
|
||||
<option>Malayalam</option>
|
||||
<option>Maltese</option>
|
||||
<option>Maori</option>
|
||||
<option>Marathi</option>
|
||||
<option>Mongolian</option>
|
||||
<option>Nepali</option>
|
||||
<option>Norwegian</option>
|
||||
<option>Pashto</option>
|
||||
<option>Persian</option>
|
||||
<option>Polish</option>
|
||||
<option>Portuguese</option>
|
||||
<option>Punjabi</option>
|
||||
<option>Romanian</option>
|
||||
<option>Russian</option>
|
||||
<option>Samoan</option>
|
||||
<option>Scots Gaelic</option>
|
||||
<option>Serbian</option>
|
||||
<option>Sesotho</option>
|
||||
<option>Shona</option>
|
||||
<option>Sindhi</option>
|
||||
<option>Sinhala</option>
|
||||
<option>Slovak</option>
|
||||
<option>Slovenian</option>
|
||||
<option>Somali</option>
|
||||
<option>Spanish</option>
|
||||
<option>Sundanese</option>
|
||||
<option>Swahili</option>
|
||||
<option>Swedish</option>
|
||||
<option>Tajik</option>
|
||||
<option>Tamil</option>
|
||||
<option>Telugu</option>
|
||||
<option>Thai</option>
|
||||
<option>Turkish</option>
|
||||
<option>Ukrainian</option>
|
||||
<option>Urdu</option>
|
||||
<option>Uzbek</option>
|
||||
<option>Vietnamese</option>
|
||||
<option>Welsh</option>
|
||||
<option>Xhosa</option>
|
||||
<option>Yiddish</option>
|
||||
<option>Yoruba</option>
|
||||
<option>Zulu</option>
|
||||
</select>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label for="inputID" class="control-label"><?php echo $LANG['security_code']; ?></label>
|
||||
<img width="90px" height="25px" src="./security_code.php?id=<?=$security_id?>">
|
||||
<input type="hidden" name="id" class="form-control" id="inputID" value="<?=$security_id?>">
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label for="inputSecurityCode" class="control-label"><?php echo $LANG['input_security_code']; ?></label>
|
||||
<input type="text" name="number" class="form-control" id="inputSecurityCode" placeholder="<?php echo $LANG['input_security_code_above']; ?>">
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<button type="submit" name="submit" class="btn btn-lg btn-primary"><?php echo $LANG['register']; ?></button>
|
||||
<div class="panel-body">
|
||||
<form class="form-horizontal" role="form" method=post action="//order.<?php echo $domain; ?>/register.php"><!--remote_reg.php-->
|
||||
<input type="hidden" name="plan_name" value="free webhosting">
|
||||
<div class="form-group">
|
||||
<label for="inputUsername" class="col-sm-4 control-label"><?php echo $LANG['username']; ?></label>
|
||||
<div class="col-sm-5">
|
||||
<input type="text" name="username" class="form-control" id="inputUsername" placeholder="<?php echo $LANG['input_username']; ?>" value="<?php if (isset($_GET['username'])) {echo $_GET['username'];}?>">
|
||||
</div>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label for="inputPassword" class="col-sm-4 control-label"><?php echo $LANG['password']; ?></label>
|
||||
<div class="col-sm-5">
|
||||
<input type="password" name="password" class="form-control" id="inputPassword" placeholder="<?php echo $LANG['input_password']; ?>">
|
||||
</div>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label for="inputEmail" class="col-sm-4 control-label"><?php echo $LANG['email']; ?></label>
|
||||
<div class="col-sm-5">
|
||||
<input type="email" name="email" class="form-control" id="inputEmail" placeholder="<?php echo $LANG['input_email']; ?>" value="<?php if (isset($_GET['email'])) {echo $_GET['email'];}?>">
|
||||
</div>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label for="inputCategory" class="col-sm-4 control-label"><?php echo $LANG['site_category']; ?></label>
|
||||
<div class="col-sm-5">
|
||||
<select class="form-control" name="website_category" id="inputCategory">
|
||||
<option><?php echo $LANG['choose_from_below']; ?></option>
|
||||
<option value="personal"><?php echo $LANG['personal']; ?></option>
|
||||
<option value="business"><?php echo $LANG['business']; ?></option>
|
||||
<option value="hobby"><?php echo $LANG['hobby']; ?></option>
|
||||
<option value="forum"><?php echo $LANG['forum']; ?></option>
|
||||
<option value="dating"><?php echo $LANG['dating']; ?></option>
|
||||
<option value="software_download"><?php echo $LANG['software_download']; ?></option>
|
||||
</select>
|
||||
</div>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label for="inputLanguage" class="col-sm-4 control-label"><?php echo $LANG['site_language']; ?></label>
|
||||
<div class="col-sm-5">
|
||||
<select class="form-control" name="website_language" id="inputLanguage">
|
||||
<option><?php echo $LANG['choose_from_below']; ?></option>
|
||||
<option data-i18n="english">English</option>
|
||||
<option data-i18n="non_english">Non-English</option>
|
||||
</select>
|
||||
</div>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label for="inputID" class="col-sm-4 control-label"><?php echo $LANG['security_code']; ?></label>
|
||||
<div class="col-sm-5">
|
||||
<img width="90px" height="25px" src="/security_code.php?id=<?php echo $security_id; ?>">
|
||||
<input type="hidden" name="id" class="form-control" id="inputID" value="<?php echo $security_id; ?>">
|
||||
</div>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label for="inputSecurityCode" class="col-sm-4 control-label"><?php echo $LANG['input_security_code']; ?></label>
|
||||
<div class="col-sm-5">
|
||||
<input type="text" name="number" class="form-control" id="inputSecurityCode" placeholder="<?php echo $LANG['input_security_code_above']; ?>">
|
||||
</div>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<div class="col-sm-offset-4 col-sm-6">
|
||||
<button type="submit" name="submit" class="btn btn-default"><?php echo $LANG['register']; ?></button>
|
||||
</div>
|
||||
</div>
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<?php include ("footer.php"); ?>
|
||||
<?php include "footer.php";?>
|
||||
</body>
|
||||
</html>
|
184
register_bak.php
Normal file
184
register_bak.php
Normal file
|
@ -0,0 +1,184 @@
|
|||
<?php
|
||||
define('IN_SYS', true);
|
||||
require_once ("core.php");
|
||||
$security_id = md5(rand(6000,getrandmax())); // $security_id = md5(rand(6000,PHP_INT_MAX));
|
||||
?>
|
||||
<!DOCTYPE html>
|
||||
<html lang="<?php echo $current_language; ?>">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<title><?php echo $title; ?> - <?php echo $LANG['register']; ?></title>
|
||||
<?php include ("headmate.php"); ?>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<?php include ("nav.php"); ?>
|
||||
|
||||
<div class="bs-docs-header">
|
||||
<div class="container">
|
||||
<h1><?php echo $LANG['signup_free_hosting']; ?></h1>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="container">
|
||||
<div class="form-group form-horizontal form-account">
|
||||
<input type="hidden" name="plan_name" value="free webhosting">
|
||||
<div class="form-group">
|
||||
<label for="inputUsername" class="control-label"><?php echo $LANG['username']; ?></label>
|
||||
<input type="text" name="username" class="form-control" id="inputUsername" placeholder="<?php echo $LANG['input_username']; ?>" value="<?php if (isset($_GET['username'])) { echo $_GET['username']; }?>">
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label for="inputDomain" class="control-label"><?php echo $LANG['domain']; ?></label>
|
||||
<input type="text" name="domain" class="form-control" id="inputDomain" placeholder="<?php echo $LANG['input_domain']; ?>" value="<?php if (isset($_GET['domain'])) { echo $_GET['domain']; }?>">
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label for="inputPassword" class="control-label"><?php echo $LANG['password']; ?></label>
|
||||
<input type="password" name="password" class="form-control" id="inputPassword" placeholder="<?php echo $LANG['input_password']; ?>">
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label for="inputEmail" class="control-label"><?php echo $LANG['email']; ?></label>
|
||||
<input type="email" name="email" class="form-control" id="inputEmail" placeholder="<?php echo $LANG['input_email']; ?>" value="<?php if (isset($_GET['email'])) { echo $_GET['email']; }?>">
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label for="inputCategory" class="control-label"><?php echo $LANG['site_category']; ?></label>
|
||||
<select class="form-control" name="website_category" id="inputCategory">
|
||||
<option><?php echo $LANG['choose_from_below']; ?></option>
|
||||
<option><?php echo $LANG['personal']; ?></option>
|
||||
<option><?php echo $LANG['business']; ?></option>
|
||||
<option><?php echo $LANG['hobby']; ?></option>
|
||||
<option><?php echo $LANG['forum']; ?></option>
|
||||
<option><?php echo $LANG['dating']; ?></option>
|
||||
<option><?php echo $LANG['software_download']; ?></option>
|
||||
</select>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label for="inputLanguage" class="control-label"><?php echo $LANG['site_language']; ?></label>
|
||||
<select class="form-control" name="website_language" id="inputLanguage">
|
||||
<option><?php echo $LANG['choose_from_below']; ?></option>
|
||||
<!-- <option data-i18n="english">English</option> -->
|
||||
<!-- <option data-i18n="non_english">Non-English</option> -->
|
||||
<option selected="selected" value="English">Auto: English</option>
|
||||
<option>Afrikaans</option>
|
||||
<option>Albanian</option>
|
||||
<option>Amharic</option>
|
||||
<option>Arabic</option>
|
||||
<option>Armenian</option>
|
||||
<option>Azeerbaijani</option>
|
||||
<option>Basque</option>
|
||||
<option>Belarusian</option>
|
||||
<option>Bengali</option>
|
||||
<option>Bosnian</option>
|
||||
<option>Bulgarian</option>
|
||||
<option>Burmese</option>
|
||||
<option>Catalan</option>
|
||||
<option>Cebuano</option>
|
||||
<option>Chichewa</option>
|
||||
<option>Chinese_simplified</option>
|
||||
<option>Chinese_traditional</option>
|
||||
<option>Corsican</option>
|
||||
<option>Croatian</option>
|
||||
<option>Czech</option>
|
||||
<option>Danish</option>
|
||||
<option>Dutch</option>
|
||||
<option>English</option>
|
||||
<option>Esperanto</option>
|
||||
<option>Estonian</option>
|
||||
<option>Farsi</option>
|
||||
<option>Filipino</option>
|
||||
<option>Finnish</option>
|
||||
<option>French</option>
|
||||
<option>Frisian</option>
|
||||
<option>Galician</option>
|
||||
<option>Georgian</option>
|
||||
<option>German</option>
|
||||
<option>Greek</option>
|
||||
<option>Gujarati</option>
|
||||
<option>Haitian Creole</option>
|
||||
<option>Hausa</option>
|
||||
<option>Hawaiian</option>
|
||||
<option>Hebrew</option>
|
||||
<option>Hindi</option>
|
||||
<option>Hmong</option>
|
||||
<option>Hungarian</option>
|
||||
<option>Icelandic</option>
|
||||
<option>Igbo</option>
|
||||
<option>Indonesian</option>
|
||||
<option>Irish</option>
|
||||
<option>Italian</option>
|
||||
<option>Japanese</option>
|
||||
<option>Javanese</option>
|
||||
<option>Kannada</option>
|
||||
<option>Kazakh</option>
|
||||
<option>Khmer</option>
|
||||
<option>Korean</option>
|
||||
<option>Kurdish</option>
|
||||
<option>Kyrgyz</option>
|
||||
<option>Lao</option>
|
||||
<option>Latin</option>
|
||||
<option>Latvian</option>
|
||||
<option>Lithuanian</option>
|
||||
<option>Luxembourgish</option>
|
||||
<option>Macedonian</option>
|
||||
<option>Malagasy</option>
|
||||
<option>Malay</option>
|
||||
<option>Malayalam</option>
|
||||
<option>Maltese</option>
|
||||
<option>Maori</option>
|
||||
<option>Marathi</option>
|
||||
<option>Mongolian</option>
|
||||
<option>Nepali</option>
|
||||
<option>Norwegian</option>
|
||||
<option>Pashto</option>
|
||||
<option>Persian</option>
|
||||
<option>Polish</option>
|
||||
<option>Portuguese</option>
|
||||
<option>Punjabi</option>
|
||||
<option>Romanian</option>
|
||||
<option>Russian</option>
|
||||
<option>Samoan</option>
|
||||
<option>Scots Gaelic</option>
|
||||
<option>Serbian</option>
|
||||
<option>Sesotho</option>
|
||||
<option>Shona</option>
|
||||
<option>Sindhi</option>
|
||||
<option>Sinhala</option>
|
||||
<option>Slovak</option>
|
||||
<option>Slovenian</option>
|
||||
<option>Somali</option>
|
||||
<option>Spanish</option>
|
||||
<option>Sundanese</option>
|
||||
<option>Swahili</option>
|
||||
<option>Swedish</option>
|
||||
<option>Tajik</option>
|
||||
<option>Tamil</option>
|
||||
<option>Telugu</option>
|
||||
<option>Thai</option>
|
||||
<option>Turkish</option>
|
||||
<option>Ukrainian</option>
|
||||
<option>Urdu</option>
|
||||
<option>Uzbek</option>
|
||||
<option>Vietnamese</option>
|
||||
<option>Welsh</option>
|
||||
<option>Xhosa</option>
|
||||
<option>Yiddish</option>
|
||||
<option>Yoruba</option>
|
||||
<option>Zulu</option>
|
||||
</select>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label for="inputID" class="control-label"><?php echo $LANG['security_code']; ?></label>
|
||||
<img width="90px" height="25px" src="./security_code.php?id=<?=$security_id?>">
|
||||
<input type="hidden" name="id" class="form-control" id="inputID" value="<?=$security_id?>">
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label for="inputSecurityCode" class="control-label"><?php echo $LANG['input_security_code']; ?></label>
|
||||
<input type="text" name="number" class="form-control" id="inputSecurityCode" placeholder="<?php echo $LANG['input_security_code_above']; ?>">
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<button type="submit" name="submit" class="btn btn-lg btn-primary"><?php echo $LANG['register']; ?></button>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<?php include ("footer.php"); ?>
|
||||
</body>
|
||||
</html>
|
|
@ -21,7 +21,7 @@
|
|||
<!--<?=$str_code?>-->
|
||||
<blink>ipaddress logged <?=$logged_ipaddress?></blink>
|
||||
<h2 data-i18n="password_eset">Lost Password Retrieval System</h2>
|
||||
<div class="form-group form-horizontal form-account" role="form" action="http://cpanel.<?=$domain?>/passwords.php" method="post" name="password_reset">
|
||||
<form class="form-signin" role="form" action="http://cpanel.<?=$domain?>/passwords.php" method="post" name="password_reset">
|
||||
<h2 data-i18n="password_eset">Password Reset</h2>
|
||||
<input type="hidden" name="token" value="<?=$password_reset_token_id?>">
|
||||
<div class="form-group">
|
||||
|
@ -32,14 +32,10 @@
|
|||
<label for="inputEmail" class="control-label" data-i18n="email">Email Address</label>
|
||||
<input type="email" name="email" class="form-control" id="inputEmail" placeholder="Email Address" data-i18n="input_email" required>
|
||||
</div>
|
||||
<div class="form-group checkbox">
|
||||
<label>Not yet have an account?</label>
|
||||
<a href="./register.php"><?php echo $LANG['register']; ?></a>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<button type="submit" name="submit" class="btn btn-lg btn-primary btn-block" data-i18n="Fetch">Fetch</button>
|
||||
</div>
|
||||
</div>
|
||||
</form>
|
||||
<div class="row">
|
||||
<p>In the above form, enter the username and the REGISTERED email address that was used when signing up for the account.<br>
|
||||
We will then email the registered email address with reset account details.
|
||||
|
|
|
@ -35,7 +35,7 @@
|
|||
</div>
|
||||
<div class="form-group">
|
||||
<label>Not yet have an account ?</label>
|
||||
<label><a href="./register.php"><?php echo $LANG['register']; ?></a></label>
|
||||
<label><a href="register.php"><?php echo $LANG['register']; ?></a></label>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<button type="submit" name="submit" class="btn btn-lg btn-primary btn-block">Submit</button>
|
||||
|
|
201
solution.php
201
solution.php
|
@ -11,111 +11,114 @@
|
|||
</head>
|
||||
<body>
|
||||
<?php include ("nav.php"); ?>
|
||||
|
||||
<div class="bs-docs-header">
|
||||
<div class="container">
|
||||
<h1><?php echo $LANG['solution']; ?></h1>
|
||||
<p>You can sign up here for fast free PHP & MySQL hosting including a free sub domain. Fill out the form below and your free hosting account will be created. <em>Enjoy :)</em></p>
|
||||
</div>
|
||||
</div>
|
||||
<section class="section-wrap">
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
<div class="col-sm-6">
|
||||
<div class="list-group">
|
||||
<div class="list-group-item">
|
||||
<?php echo $LANG['host-plan-free']; ?>
|
||||
</div>
|
||||
<div class="list-group-item">
|
||||
<span class="badge">1</span>
|
||||
<?php echo $LANG['ftp-accounts']; ?>
|
||||
</div>
|
||||
<div class="list-group-item">
|
||||
<span class="badge">1</span>
|
||||
<?php echo $LANG['sub-domains']; ?>
|
||||
</div>
|
||||
<div class="list-group-item">
|
||||
<span class="badge">1</span>
|
||||
<?php echo $LANG['add-on-domains']; ?>
|
||||
</div>
|
||||
<div class="list-group-item">
|
||||
<span class="badge"><?php echo $LANG['unlimited']; ?></span>
|
||||
<?php echo $LANG['parked-domains']; ?>
|
||||
</div>
|
||||
<div class="list-group-item">
|
||||
<span class="badge">10</span>
|
||||
<?php echo $LANG['mysql-databases']; ?>
|
||||
</div>
|
||||
<div class="list-group-item">
|
||||
<span class="badge">10GB (10240MB)</span>
|
||||
<?php echo $LANG['disk-quota']; ?>
|
||||
</div>
|
||||
<div class="list-group-item">
|
||||
<span class="badge">100GB (102400MB)</span>
|
||||
<?php echo $LANG['bandwidth']; ?>
|
||||
</div>
|
||||
<div class="list-group-item">
|
||||
<span class="badge">50000</span>
|
||||
<?php echo $LANG['daily-hits']; ?>
|
||||
</div>
|
||||
<div class="list-group-item">
|
||||
<span class="badge">30019</span>
|
||||
<?php echo $LANG['host-inodes']; ?>
|
||||
</div>
|
||||
<div class="list-group-item text-center">
|
||||
<a class="btn btn-primary" href="./register.php" role="button"><?php echo $LANG['register']; ?></a>
|
||||
</div>
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
<section class="section-wrap">
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
<div class="hidden-xs col-sm-12 col-md-12 termsHead">
|
||||
<h1><?php echo $LANG['solution']; ?></h1>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-sm-6">
|
||||
<div class="list-group">
|
||||
<div class="list-group-item">
|
||||
<?php echo $LANG['host-plan-paid']; ?>
|
||||
<div class="row">
|
||||
<div class="col-sm-6">
|
||||
<div class="list-group">
|
||||
<div class="list-group-item">
|
||||
<?php echo $LANG['host-plan-free']; ?>
|
||||
</div>
|
||||
<div class="list-group-item">
|
||||
<span class="badge">1</span>
|
||||
<?php echo $LANG['ftp-accounts']; ?>
|
||||
</div>
|
||||
<div class="list-group-item">
|
||||
<span class="badge">1</span>
|
||||
<?php echo $LANG['sub-domains']; ?>
|
||||
</div>
|
||||
<div class="list-group-item">
|
||||
<span class="badge">1</span>
|
||||
<?php echo $LANG['add-on-domains']; ?>
|
||||
</div>
|
||||
<div class="list-group-item">
|
||||
<span class="badge"><?php echo $LANG['unlimited']; ?></span>
|
||||
<?php echo $LANG['parked-domains']; ?>
|
||||
</div>
|
||||
<div class="list-group-item">
|
||||
<span class="badge">10</span>
|
||||
<?php echo $LANG['mysql-databases']; ?>
|
||||
</div>
|
||||
<div class="list-group-item">
|
||||
<span class="badge">10GB (10240MB)</span>
|
||||
<?php echo $LANG['disk-quota']; ?>
|
||||
</div>
|
||||
<div class="list-group-item">
|
||||
<span class="badge">100GB (102400MB)</span>
|
||||
<?php echo $LANG['bandwidth']; ?>
|
||||
</div>
|
||||
<div class="list-group-item">
|
||||
<span class="badge">50000</span>
|
||||
<?php echo $LANG['daily-hits']; ?>
|
||||
</div>
|
||||
<div class="list-group-item">
|
||||
<span class="badge">30019</span>
|
||||
<?php echo $LANG['host-inodes']; ?>
|
||||
</div>
|
||||
<div class="list-group-item text-center">
|
||||
<a class="btn btn-primary" href="/register.php" role="button"><?php echo $LANG['register']; ?></a>
|
||||
</div>
|
||||
</div>
|
||||
<div class="list-group-item">
|
||||
<span class="badge">1</span>
|
||||
<?php echo $LANG['ftp-accounts']; ?>
|
||||
</div>
|
||||
<div class="list-group-item">
|
||||
<span class="badge"><?php echo $LANG['unlimited']; ?></span>
|
||||
<?php echo $LANG['sub-domains']; ?>
|
||||
</div>
|
||||
<div class="list-group-item">
|
||||
<span class="badge"><?php echo $LANG['unlimited']; ?></span>
|
||||
<?php echo $LANG['add-on-domains']; ?>
|
||||
</div>
|
||||
<div class="list-group-item">
|
||||
<span class="badge"><?php echo $LANG['unlimited']; ?></span>
|
||||
<?php echo $LANG['parked-domains']; ?>
|
||||
</div>
|
||||
<div class="list-group-item">
|
||||
<span class="badge"><?php echo $LANG['unlimited']; ?></span>
|
||||
<?php echo $LANG['mysql-databases']; ?>
|
||||
</div>
|
||||
<div class="list-group-item">
|
||||
<span class="badge"><?php echo $LANG['unlimited']; ?></span>
|
||||
<?php echo $LANG['disk-quota']; ?>
|
||||
</div>
|
||||
<div class="list-group-item">
|
||||
<span class="badge"><?php echo $LANG['unlimited']; ?></span>
|
||||
<?php echo $LANG['bandwidth']; ?>
|
||||
</div>
|
||||
<div class="list-group-item">
|
||||
<span class="badge"><?php echo $LANG['unlimited']; ?></span>
|
||||
<?php echo $LANG['daily-hits']; ?>
|
||||
</div>
|
||||
<div class="list-group-item">
|
||||
<span class="badge"><?php echo $LANG['unlimited']; ?></span>
|
||||
<?php echo $LANG['host-inodes']; ?>
|
||||
</div>
|
||||
<div class="list-group-item text-center">
|
||||
<a class="btn btn-primary disabled" href="./register.php" role="button"><?php echo $LANG['register']; ?></a>
|
||||
</div>
|
||||
</ul>
|
||||
|
||||
</div>
|
||||
<div class="col-sm-6">
|
||||
<div class="list-group">
|
||||
<div class="list-group-item">
|
||||
<?php echo $LANG['host-plan-paid']; ?>
|
||||
</div>
|
||||
<div class="list-group-item">
|
||||
<span class="badge">1</span>
|
||||
<?php echo $LANG['ftp-accounts']; ?>
|
||||
</div>
|
||||
<div class="list-group-item">
|
||||
<span class="badge"><?php echo $LANG['unlimited']; ?></span>
|
||||
<?php echo $LANG['sub-domains']; ?>
|
||||
</div>
|
||||
<div class="list-group-item">
|
||||
<span class="badge"><?php echo $LANG['unlimited']; ?></span>
|
||||
<?php echo $LANG['add-on-domains']; ?>
|
||||
</div>
|
||||
<div class="list-group-item">
|
||||
<span class="badge"><?php echo $LANG['unlimited']; ?></span>
|
||||
<?php echo $LANG['parked-domains']; ?>
|
||||
</div>
|
||||
<div class="list-group-item">
|
||||
<span class="badge"><?php echo $LANG['unlimited']; ?></span>
|
||||
<?php echo $LANG['mysql-databases']; ?>
|
||||
</div>
|
||||
<div class="list-group-item">
|
||||
<span class="badge"><?php echo $LANG['unlimited']; ?></span>
|
||||
<?php echo $LANG['disk-quota']; ?>
|
||||
</div>
|
||||
<div class="list-group-item">
|
||||
<span class="badge"><?php echo $LANG['unlimited']; ?></span>
|
||||
<?php echo $LANG['bandwidth']; ?>
|
||||
</div>
|
||||
<div class="list-group-item">
|
||||
<span class="badge"><?php echo $LANG['unlimited']; ?></span>
|
||||
<?php echo $LANG['daily-hits']; ?>
|
||||
</div>
|
||||
<div class="list-group-item">
|
||||
<span class="badge"><?php echo $LANG['unlimited']; ?></span>
|
||||
<?php echo $LANG['host-inodes']; ?>
|
||||
</div>
|
||||
<div class="list-group-item text-center">
|
||||
<a class="btn btn-primary disabled" href="/register.php" role="button"><?php echo $LANG['register']; ?></a>
|
||||
</div>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
</div>
|
||||
</div>
|
||||
<?php include ("footer.php"); ?>
|
||||
</body>
|
||||
</html>
|
Loading…
Add table
Reference in a new issue