update
This commit is contained in:
parent
4894be8108
commit
3bf955064e
48 changed files with 917 additions and 1017 deletions
30
about.php
30
about.php
|
@ -2,29 +2,9 @@
|
|||
define('IN_SYS', true);
|
||||
require_once "core.php";
|
||||
|
||||
$section = empty($_GET["s"]) ? "uiisc" : $_GET["s"];
|
||||
$enable_section = ["crogram", "ifastnet", "uiisc"];
|
||||
include("{$ROOT}/core/controllers/about.php");
|
||||
|
||||
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("index/header.php");
|
||||
|
||||
if (in_array($section, $enable_section)) {
|
||||
include("index/about_" . $section . ".php");
|
||||
} else {
|
||||
include("index/about_uiisc.php");
|
||||
}
|
||||
|
||||
|
||||
|
||||
include("index/footer.php");
|
||||
include("{$ROOT}/core/views/header.php");
|
||||
include("{$ROOT}/core/views/navbar.php");
|
||||
include("{$section_page}");
|
||||
include("{$ROOT}/core/views/footer.php");
|
||||
|
|
|
@ -1,5 +1,10 @@
|
|||
<?php
|
||||
|
||||
if (!defined('IN_SYS')) {
|
||||
// exit('禁止访问');
|
||||
header("Location: ../admin.php");
|
||||
exit;
|
||||
}
|
||||
|
||||
function isAdminLoggedIn()
|
||||
{
|
||||
|
|
|
@ -1,16 +0,0 @@
|
|||
<?php
|
||||
if (!defined('IN_SYS')) {
|
||||
// exit('禁止访问');
|
||||
header("Location: ../../admin.php");
|
||||
exit;
|
||||
}
|
||||
?>
|
||||
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
<div class="col-md-12 col-sm-12">
|
||||
<h2><?php echo $section_title; ?></h2>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
222
adminbak.php
222
adminbak.php
|
@ -1,222 +0,0 @@
|
|||
<?php
|
||||
// ini_set("display_errors", false);
|
||||
|
||||
define("IN_SYS", true);
|
||||
require_once("core.php");
|
||||
|
||||
// $INDEX = __FILE__;
|
||||
|
||||
include_once "{$ROOT}/include/common.php";
|
||||
include_once "{$ROOT}/lib/api.php";
|
||||
include_once "{$ROOT}/controllers/admin.php";
|
||||
getVersion();
|
||||
|
||||
if (!file_exists("{$ROOT}/data/installed") || !isset($config) || $config['apiUsername'] == '#getUsername#' || $config['apiPassword'] == '#getPassword#') {
|
||||
header('Location: ./install.php');
|
||||
}
|
||||
|
||||
?>
|
||||
|
||||
<?php include("include/admin_header.php"); ?>
|
||||
|
||||
<?php if (file_exists("{$ROOT}/install.php")) { ?>
|
||||
<div class="container">
|
||||
<div class="alert alert-dismissible alert-danger">Please delete the <b>install.php</b> file.</div>
|
||||
</div>
|
||||
<?php } ?>
|
||||
|
||||
<div class="container">
|
||||
<?php if ($is_admin) { ?>
|
||||
<div class="row">
|
||||
<div class="col-md-12">
|
||||
<a class="btn btn-default" href="admin.php?s=check_domain" role="button">Check Domain</a>
|
||||
<a class="btn btn-default" href="admin.php?s=account_list" role="button">List</a>
|
||||
<a class="btn btn-default" href="admin.php?s=account_add" role="button">Add</a>
|
||||
<a class="btn btn-default" href="admin.php?s=account_password" role="button">Password</a>
|
||||
<a class="btn btn-default" href="admin.php?s=account_disable" role="button">Suspend</a>
|
||||
<a class="btn btn-default" href="admin.php?s=account_active" role="button">Activate</a>
|
||||
<a class="btn btn-default" href="admin.php?s=account_status" role="button">Status</a>
|
||||
<a class="btn btn-default" href="admin.php?s=account_domain" role="button">Domains</a>
|
||||
</div>
|
||||
</div>
|
||||
<?php } ?>
|
||||
<div class="row">
|
||||
<div class="col-md-12 col-sm-12">
|
||||
<?php if ($section == 'main') { ?>
|
||||
<h1>Hosting Account Management System</h1>
|
||||
<p class="lead">This is a simple script for WHM myownfreehost made to manage hosting accounts through the api assigned to users with free reseller accounts.</p>
|
||||
<b>Available Functions:</b>
|
||||
<ol>
|
||||
<li>Verify if a domain is available.</li>
|
||||
<li>Creation of account hosting from the panel.</li>
|
||||
<li>Change password to hosting account.</li>
|
||||
<li>Deactivate or disable a hosting account.</li>
|
||||
<li>Activate or enable hosting account.</li>
|
||||
<li>Verify how many domain and state of the hosting account.</li>
|
||||
</ol>
|
||||
<?php } else { ?>
|
||||
<h2><?php echo $section_title; ?></h2>
|
||||
<?php if ($section == 'check_domain') { ?>
|
||||
<form action="" method="POST">
|
||||
<p>Verify the domain is available for registration</p>
|
||||
<label>
|
||||
<!-- <span>Account:</span> -->
|
||||
<input type="text" name="domain" class="form-control" maxlength="50" placeholder="Enter a domain or sub-domain">
|
||||
</label>
|
||||
<button type="submit" name="do_check_domain" class="btn btn-primary">Verify domain</button>
|
||||
</form>
|
||||
<?php } elseif ($section == 'account_list') {; ?>
|
||||
<div class="table-responsive">
|
||||
<table class="table table-bordered table-hover">
|
||||
<thead>
|
||||
<tr>
|
||||
<th>#</th>
|
||||
<th>Branch</th>
|
||||
<th>Account</th>
|
||||
<th>Username</th>
|
||||
<th>Email</th>
|
||||
<th>Domain</th>
|
||||
<th>Plan</th>
|
||||
<th>Password</th>
|
||||
<th>Nameserver</th>
|
||||
<th>Operate</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<?php foreach ($member as $key => $value) { ?>
|
||||
<tr>
|
||||
<th><?php echo $key + 1; ?></th>
|
||||
<td><?php echo $value["branch"]; ?></td>
|
||||
<td><?php echo $value["account"]; ?></td>
|
||||
<td><?php echo $value["username"]; ?></td>
|
||||
<td><?php echo $value["email"]; ?></td>
|
||||
<td><?php echo implode(",", $value["domain"]); ?></td>
|
||||
<td><?php echo $value["plan"]; ?></td>
|
||||
<td><?php echo $value["password"]; ?></td>
|
||||
<td><?php echo implode(",", $value["nameserver"]); ?></td>
|
||||
<td style="width: 206px;">
|
||||
<a class="btn btn-default btn-xs" href="#" role="button"><?php echo $LANG['login']; ?></a>
|
||||
<button class="btn btn-default btn-xs" type="submit">View</button>
|
||||
<button class="btn btn-default btn-xs" type="submit">Active</button>
|
||||
<button class="btn btn-default btn-xs" type="submit">Disable</button>
|
||||
</td>
|
||||
</tr>
|
||||
<?php } ?>
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
<?php } elseif ($section == 'account_add') {; ?>
|
||||
<form action="" method="POST">
|
||||
<label>
|
||||
<span>Account:</span>
|
||||
<input type="text" name="username" value="" class="form-control" maxlength="8" placeholder="Account of 8 characters">
|
||||
</label>
|
||||
<label>
|
||||
<span>Password:</span>
|
||||
<input type="password" name="password" value="" class="form-control" maxlength="35" placeholder="Password">
|
||||
</label>
|
||||
<label>
|
||||
<span>Domain or Sub-domain:</span>
|
||||
<input type="text" name="domain" value="" class="form-control" maxlength="35" placeholder="example.com">
|
||||
</label>
|
||||
<label>
|
||||
<span>Email Address:</span>
|
||||
<input type="text" name="email" value="" class="form-control" maxlength="35" placeholder="email@example.com">
|
||||
</label>
|
||||
<label>
|
||||
<span>Select a Hosting Plan:</span>
|
||||
<select name="plan" class="form-control">
|
||||
<?php foreach ($config['plan'] as $key => $value) { ?>
|
||||
<option value="<?php echo $key; ?>"><?php echo $value; ?></option>
|
||||
<?php } ?>
|
||||
</select>
|
||||
</label>
|
||||
<button type="submit" name="do_reg_account" class="btn btn-primary">Register Account</button>
|
||||
</form>
|
||||
<?php } elseif ($section == 'account_password') {; ?>
|
||||
<form action="" method="POST">
|
||||
<!-- Reset Password -->
|
||||
<label>
|
||||
<span>Account: <small>(It is the 8 characters)</small></span>
|
||||
<input type="text" name="username" class="form-control" maxlength="8" placeholder="Account: (It is the 8 characters)">
|
||||
</label>
|
||||
<label>
|
||||
<span>New Password:</span>
|
||||
<input type="password" name="password" class="form-control" maxlength="35" placeholder="Password">
|
||||
</label>
|
||||
<button type="submit" name="do_set_password" class="btn btn-primary">Set Password</button>
|
||||
</form>
|
||||
<?php } elseif ($section == 'account_disable') {; ?>
|
||||
<form action="" method="POST">
|
||||
<label>
|
||||
<span>Account: <small>(It is the 8 characters)</small></span>
|
||||
<input type="text" name="username" class="form-control" maxlength="8" placeholder="Account: (It is the 8 characters)">
|
||||
</label>
|
||||
<label>
|
||||
<span>Reason for deactivation:</span>
|
||||
<input type="text" name="reason" class="form-control" maxlength="60" placeholder="Reason or some message">
|
||||
</label>
|
||||
<button type="submit" name="do_disable_account" class="btn btn-primary">Save Settings</button>
|
||||
</form>
|
||||
<?php } elseif ($section == 'account_active') {; ?>
|
||||
<form action="" method="POST">
|
||||
<label>
|
||||
<span>Account: <small>(It is the 8 characters)</small></span>
|
||||
<input type="text" name="username" class="form-control" maxlength="8" placeholder="Account: (It is the 8 characters)">
|
||||
</label>
|
||||
<button type="submit" name="do_activate_account" class="btn btn-primary">Save Settings</button>
|
||||
</form>
|
||||
<?php } elseif ($section == 'account_status') {; ?>
|
||||
<form action="" method="POST">
|
||||
<label>
|
||||
<span>VistaPanel Username: <small>(Example: uii_12345678)</small></span>
|
||||
<input type="text" name="username" class="form-control" maxlength="18" placeholder="VPanel Username (Example: uii_12345678)">
|
||||
</label>
|
||||
<button type="submit" name="do_check_status" class="btn btn-primary">Check Status</button>
|
||||
</form>
|
||||
<?php } elseif ($section == 'account_domain') {; ?>
|
||||
<form action="" method="POST">
|
||||
<label>
|
||||
<span>VistaPanel Username: <small>(Example: uii_12345678)</small></span>
|
||||
<input type="text" name="username" class="form-control" maxlength="18" placeholder="VPanel Username (Example: uii_12345678)">
|
||||
</label>
|
||||
<button type="submit" name="do_get_domains" class="btn btn-primary">View Domain</button>
|
||||
</form>
|
||||
<?php } elseif ($section == 'login') {; ?>
|
||||
<?php if (!$is_admin) { ?>
|
||||
<form action="" method="POST" class="form-horizontal">
|
||||
<label>
|
||||
<span>Admin:</span>
|
||||
<input type="text" name="username" class="form-control" maxlength="18" placeholder="Admin Username" autofocus required>
|
||||
</label>
|
||||
<label>
|
||||
<span>Password:</span>
|
||||
<input type="password" name="password" class="form-control" maxlength="35" placeholder="Admin Password" required>
|
||||
</label>
|
||||
<label>
|
||||
<span>Captcha:</span>
|
||||
<input type="text" name="captcha" class="form-control" maxlength="18" placeholder="CAPTCHA" required autocomplete="off">
|
||||
</label>
|
||||
<button type="submit" name="do_login" class="btn btn-primary"><?php echo $LANG['login']; ?></button>
|
||||
</form>
|
||||
<?php } elseif ($is_admin && !isset($message[0])) { ?>
|
||||
<div class="alert alert-success">You have logged in</div>
|
||||
<?php } ?>
|
||||
<?php }
|
||||
if ($message) { ?>
|
||||
<hr/>
|
||||
<div class="alert <?php echo empty($message[0]) ? 'alert-danger' : 'alert-success'; ?>">
|
||||
<p><?php echo $message[1]; ?></p>
|
||||
<?php if (isset($message[2]) && ($message[2])) {
|
||||
echo "<p>response data:</p><pre>";
|
||||
print_r($message[2]);
|
||||
echo "</pre>";
|
||||
} ?>
|
||||
</div>
|
||||
<?php }
|
||||
} ?>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<?php include("include/admin_footer.php"); ?>
|
|
@ -1,69 +1,10 @@
|
|||
<?php
|
||||
define('IN_SYS', true);
|
||||
require_once ("core.php");
|
||||
// $html = file_get_contents('https://ifastnet.com/portal/cancellation-refund.php');
|
||||
// preg_match('/<footer[^>]*id="footer"[^>]*>(.*?) <//footer>/si', $html, $match);
|
||||
$title = $title . ' - ' . $LANG['cancellation_refund'];
|
||||
?>
|
||||
<?php include ("include/header.php"); ?>
|
||||
define('IN_SYS', true);
|
||||
require_once("core.php");
|
||||
|
||||
<div class="container">
|
||||
<div class="page-header">
|
||||
<h1 class="text-center"><?php echo $LANG['cancellation_refund']; ?></a></h1>
|
||||
<p class="text-center">Cancelation & refund information</p>
|
||||
</div>
|
||||
</div>
|
||||
include("core/controllers/cancellation-refund.php");
|
||||
|
||||
<section class="section-wrap cancelationInfo">
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
<div class="hidden-xs col-sm-12 col-md-12">
|
||||
<h2>Cancellation Policy</h2>
|
||||
</div>
|
||||
<div class="col-sm-12 col-md-12">
|
||||
<p>IFastNet.com (IFastNet LTD) believes in helping its customers as far as possible, and has
|
||||
therefore a liberal cancellation policy. Under this policy:</p>
|
||||
<ul type="d">
|
||||
<li>Cancellations will be considered only if the request is made within 7 days of placing an
|
||||
order. However, the cancellation request will not be entertained if the orders have been
|
||||
communicated to the vendors/merchants and they have initiated the process of provisioning
|
||||
services.
|
||||
</li>
|
||||
<li>Cancelations must be communicated to Ifastnet.com a minimum of 14 days before the service is
|
||||
due. Failure to cancel before this period is acceptance of renewal of the service.
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
<section class="section-wrap refundInfo">
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
<div class="hidden-xs col-sm-12 col-md-12"><h1>Refund Policy</h1></div>
|
||||
<div class="col-sm-12 col-md-12">
|
||||
<p>When you buy our products/services, your purchase is covered by our 7-day money-back guarantee.
|
||||
If you are, for any reason, not entirely happy with your purchase, we will cheerfully issue a
|
||||
full refund. We develop and sell software that we use ourselves every day and have thousands of
|
||||
satisfied customers worldwide, and our support is second to none. That is why we can afford to
|
||||
back our products with this special guarantee.</p>
|
||||
|
||||
<p>To request a refund, simply contact us with your
|
||||
purchase details within seven (7) days of your purchase. Please include your order number (sent
|
||||
to you via email after ordering) and optionally tell us why you’re requesting a refund – we take
|
||||
customer feedback very seriously and use it to constantly improve our products and quality of
|
||||
service. Refunds are not being provided for services delivered in full such as installation
|
||||
service and provided knowledge base hosting service. Refunds are being processed within a 7 day
|
||||
period.</p>
|
||||
|
||||
<p>If a service is canceled and a refund requested, the cost incurred of renewing or providing a
|
||||
free domain name (if included with the service being canceled ) will be minused from the refund
|
||||
amount (this could sometimes lead to a negative value).</p>
|
||||
|
||||
<p class="alert alert-warning"><i class="glyphicon glyphicon-info-sign"></i> Domain name renewal / registration fees and costs are non-refundable.</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<?php include ("include/footer.php"); ?>
|
||||
include("core/views/header.php");
|
||||
include("core/views/navbar.php");
|
||||
include("core/views/cancellation-refund.php");
|
||||
include("core/views/footer.php");
|
||||
|
|
37
contact.php
37
contact.php
|
@ -1,33 +1,10 @@
|
|||
<?php
|
||||
define('IN_SYS', true);
|
||||
require_once ("core.php");
|
||||
$title = $title . ' - ' . $LANG['contact_us'];
|
||||
?>
|
||||
<?php include ("include/header.php"); ?>
|
||||
define('IN_SYS', true);
|
||||
require_once("core.php");
|
||||
|
||||
<div class="container">
|
||||
<div class="page-header">
|
||||
<h1><?php echo $LANG['contact_us']; ?></h1>
|
||||
</div>
|
||||
</div>
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
<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="http://byet.net" target="_blank">Knowledge Base</a></p>
|
||||
</div>
|
||||
<div class="col-sm-12 col-md-12">
|
||||
<h2><?php echo $LANG['address']; ?></h2>
|
||||
<p>Shanghai China.</p>
|
||||
</div>
|
||||
<div class="col-sm-12 col-md-12">
|
||||
<h2>Others</h2>
|
||||
<p class="alert alert-warning"><i class="glyphicon glyphicon-info-sign"></i> Crogram Inc.</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
include("core/controllers/contact.php");
|
||||
|
||||
<?php include ("include/footer.php"); ?>
|
||||
include("core/views/header.php");
|
||||
include("core/views/navbar.php");
|
||||
include("core/views/contact.php");
|
||||
include("core/views/footer.php");
|
||||
|
|
22
core/controllers/about.php
Normal file
22
core/controllers/about.php
Normal file
|
@ -0,0 +1,22 @@
|
|||
<?php
|
||||
if (!defined('IN_SYS')) {
|
||||
// exit('禁止访问');
|
||||
header("Location: ../../about.php");
|
||||
exit;
|
||||
}
|
||||
|
||||
$section = empty($_GET["s"]) ? "uiisc" : $_GET["s"];
|
||||
$enable_section = [
|
||||
"crogram" => ["title" => "Crogram"],
|
||||
"ifastnet" => ["title" => "iFastNet"],
|
||||
"uiisc" => ["title" => "UIISC"]
|
||||
];
|
||||
|
||||
$section_page = "{$ROOT}/core/views/about_{$section}.php";
|
||||
|
||||
if (is_file(($section_page))) {
|
||||
$title = $title . ' - ' . I18N('about') . ' ' . $enable_section[$section]['title'];
|
||||
} else {
|
||||
$title = $title . ' - ' . I18N('about');
|
||||
$section_page = "{$ROOT}/core/views/about_uiisc.php";
|
||||
}
|
8
core/controllers/cancellation-refund.php
Normal file
8
core/controllers/cancellation-refund.php
Normal file
|
@ -0,0 +1,8 @@
|
|||
<?php
|
||||
if (!defined('IN_SYS')) {
|
||||
// exit('禁止访问');
|
||||
header("Location: ../../cancellation-refund.php");
|
||||
exit;
|
||||
}
|
||||
|
||||
$title = $title . ' - ' . I18N('cancellation_refund');
|
8
core/controllers/contact.php
Normal file
8
core/controllers/contact.php
Normal file
|
@ -0,0 +1,8 @@
|
|||
<?php
|
||||
if (!defined('IN_SYS')) {
|
||||
// exit('禁止访问');
|
||||
header("Location: ../../contact.php");
|
||||
exit;
|
||||
}
|
||||
|
||||
$title = $title . ' - ' . I18N('contact_us');
|
51
core/controllers/help.php
Normal file
51
core/controllers/help.php
Normal file
|
@ -0,0 +1,51 @@
|
|||
<?php
|
||||
if (!defined('IN_SYS')) {
|
||||
// exit('禁止访问');
|
||||
header("Location: ../../help.php");
|
||||
exit;
|
||||
}
|
||||
|
||||
$title = $title . ' - ' . I18N('help');
|
||||
|
||||
$questions = [
|
||||
[
|
||||
"title" => "What is bandwidth ?",
|
||||
"content" => 'Bandwidth is the amount of data your website can transfer per month, every month the bandwidth counter will reset.'
|
||||
],
|
||||
[
|
||||
"title" => "How much files can I upload ?",
|
||||
"content" => "You're free to upload as much files as you want, but please be aware that the largest size for an individual file is limited to 10Mb."
|
||||
],
|
||||
[
|
||||
"title" => "How can I upload files ?",
|
||||
"content" => 'You have two ways, the first one (recommanded), you can download a FTP client software, you will find recommanded free softwares to download on the "Free FTP Software" from the "Files" section on VistaPanel. The second way is to use our free "Online File Manager" on VistaPanel.'
|
||||
],
|
||||
[
|
||||
"title" => "How can I use FTP ?",
|
||||
"content" => 'You can view our tutorial on how to setup and use FTP to manage your files <a href="http://tutorials.securesignup.net/premium-cpanel-hosting/file-management/via-ftp-2.html">here</a>.'
|
||||
],
|
||||
[
|
||||
"title" => "Do you allow PHP and MySQL databases ?",
|
||||
"content" => 'Yes, we allow PHP and MySQL.'
|
||||
],
|
||||
[
|
||||
"title" => "Do you offer PHPMyAdmin ?",
|
||||
"content" => 'Yes we do offer PHPMyAdmin.'
|
||||
],
|
||||
[
|
||||
"title" => "What type of websites are not allowed to be hosted ?",
|
||||
"content" => 'Anything illegal, websites that contains copyrighted files (warez), adult content, spamming scripts, web proxies etc... For more information please read our TOS.'
|
||||
],
|
||||
[
|
||||
"title" => "How do I report a website ?",
|
||||
"content" => 'We would really appreciate it, the best way is to open a ticket from VistaPanel, if not, you can email us at support@uiisc.com'
|
||||
],
|
||||
[
|
||||
"title" => "How do I get support ?",
|
||||
"content" => 'To get technical support, open a ticket from VistaPanel, email us at support@5sidc.com or join our community forums'
|
||||
],
|
||||
[
|
||||
"title" => "What details should I post when asking for support ?",
|
||||
"content" => "Don't post your account's password, including databases passwords! And just be specific."
|
||||
]
|
||||
];
|
9
core/controllers/login.php
Normal file
9
core/controllers/login.php
Normal file
|
@ -0,0 +1,9 @@
|
|||
<?php
|
||||
if (!defined('IN_SYS')) {
|
||||
// exit('禁止访问');
|
||||
header("Location: ../../login.php");
|
||||
exit;
|
||||
}
|
||||
|
||||
|
||||
$title = $title . ' - ' . I18N('login');
|
8
core/controllers/news.php
Normal file
8
core/controllers/news.php
Normal file
|
@ -0,0 +1,8 @@
|
|||
<?php
|
||||
if (!defined('IN_SYS')) {
|
||||
// exit('禁止访问');
|
||||
header("Location: ../../news.php");
|
||||
exit;
|
||||
}
|
||||
|
||||
$title = $title . ' - ' . I18N('news');
|
8
core/controllers/payment-methods.php
Normal file
8
core/controllers/payment-methods.php
Normal file
|
@ -0,0 +1,8 @@
|
|||
<?php
|
||||
if (!defined('IN_SYS')) {
|
||||
// exit('禁止访问');
|
||||
header("Location: ../../payment-methods.php");
|
||||
exit;
|
||||
}
|
||||
|
||||
$title = $title . ' - ' . I18N('payment_methods');
|
8
core/controllers/register.php
Normal file
8
core/controllers/register.php
Normal file
|
@ -0,0 +1,8 @@
|
|||
<?php
|
||||
if (!defined('IN_SYS')) {
|
||||
// exit('禁止访问');
|
||||
header("Location: ../../register.php");
|
||||
exit;
|
||||
}
|
||||
$security_id = md5(rand(6000, getrandmax())); // $security_id = md5(rand(6000,PHP_INT_MAX));
|
||||
$title = $title . ' - ' . $LANG['register'];
|
8
core/controllers/solution.php
Normal file
8
core/controllers/solution.php
Normal file
|
@ -0,0 +1,8 @@
|
|||
<?php
|
||||
if (!defined('IN_SYS')) {
|
||||
// exit('禁止访问');
|
||||
header("Location: ../../solution.php");
|
||||
exit;
|
||||
}
|
||||
|
||||
$title = $title . ' - ' . I18N('solution');
|
8
core/controllers/support.php
Normal file
8
core/controllers/support.php
Normal file
|
@ -0,0 +1,8 @@
|
|||
<?php
|
||||
if (!defined('IN_SYS')) {
|
||||
// exit('禁止访问');
|
||||
header("Location: ../../support.php");
|
||||
exit;
|
||||
}
|
||||
|
||||
$title = $title . ' - ' . I18N('Technical Support');
|
|
@ -1,7 +1,7 @@
|
|||
<?php
|
||||
if (!defined('IN_SYS')) {
|
||||
// exit('禁止访问');
|
||||
header("Location: index.php");
|
||||
header("Location: ../../index.php");
|
||||
exit;
|
||||
}
|
||||
?>
|
|
@ -1,7 +1,7 @@
|
|||
<?php
|
||||
if (!defined('IN_SYS')) {
|
||||
// exit('禁止访问');
|
||||
header("Location: index.php");
|
||||
header("Location: ../../index.php");
|
||||
exit;
|
||||
}
|
||||
|
|
@ -1,7 +1,7 @@
|
|||
<?php
|
||||
if (!defined('IN_SYS')) {
|
||||
// exit('禁止访问');
|
||||
header("Location: index.php");
|
||||
header("Location: ../../index.php");
|
||||
exit;
|
||||
}
|
||||
|
70
core/views/cancellation-refund.php
Normal file
70
core/views/cancellation-refund.php
Normal file
|
@ -0,0 +1,70 @@
|
|||
<?php
|
||||
if (!defined('IN_SYS')) {
|
||||
// exit('禁止访问');
|
||||
header("Location: ../../cancellation-refund.php");
|
||||
exit;
|
||||
}
|
||||
// $html = file_get_contents('https://ifastnet.com/portal/cancellation-refund.php');
|
||||
// preg_match('/<footer[^>]*id="footer"[^>]*>(.*?) <//footer>/si', $html, $match);
|
||||
?>
|
||||
|
||||
<div class="container">
|
||||
<div class="page-header">
|
||||
<h1 class="text-center"><?php echo $LANG['cancellation_refund']; ?></a></h1>
|
||||
<p class="text-center">Cancelation & refund information</p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<section class="section-wrap cancelationInfo">
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
<div class="hidden-xs col-sm-12 col-md-12">
|
||||
<h2>Cancellation Policy</h2>
|
||||
</div>
|
||||
<div class="col-sm-12 col-md-12">
|
||||
<p>IFastNet.com (IFastNet LTD) believes in helping its customers as far as possible, and has
|
||||
therefore a liberal cancellation policy. Under this policy:</p>
|
||||
<ul type="d">
|
||||
<li>Cancellations will be considered only if the request is made within 7 days of placing an
|
||||
order. However, the cancellation request will not be entertained if the orders have been
|
||||
communicated to the vendors/merchants and they have initiated the process of provisioning
|
||||
services.
|
||||
</li>
|
||||
<li>Cancelations must be communicated to Ifastnet.com a minimum of 14 days before the service is
|
||||
due. Failure to cancel before this period is acceptance of renewal of the service.
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
<section class="section-wrap refundInfo">
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
<div class="hidden-xs col-sm-12 col-md-12">
|
||||
<h1>Refund Policy</h1>
|
||||
</div>
|
||||
<div class="col-sm-12 col-md-12">
|
||||
<p>When you buy our products/services, your purchase is covered by our 7-day money-back guarantee.
|
||||
If you are, for any reason, not entirely happy with your purchase, we will cheerfully issue a
|
||||
full refund. We develop and sell software that we use ourselves every day and have thousands of
|
||||
satisfied customers worldwide, and our support is second to none. That is why we can afford to
|
||||
back our products with this special guarantee.</p>
|
||||
|
||||
<p>To request a refund, simply contact us with your
|
||||
purchase details within seven (7) days of your purchase. Please include your order number (sent
|
||||
to you via email after ordering) and optionally tell us why you’re requesting a refund – we take
|
||||
customer feedback very seriously and use it to constantly improve our products and quality of
|
||||
service. Refunds are not being provided for services delivered in full such as installation
|
||||
service and provided knowledge base hosting service. Refunds are being processed within a 7 day
|
||||
period.</p>
|
||||
|
||||
<p>If a service is canceled and a refund requested, the cost incurred of renewing or providing a
|
||||
free domain name (if included with the service being canceled ) will be minused from the refund
|
||||
amount (this could sometimes lead to a negative value).</p>
|
||||
|
||||
<p class="alert alert-warning"><i class="glyphicon glyphicon-info-sign"></i> Domain name renewal / registration fees and costs are non-refundable.</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
32
core/views/contact.php
Normal file
32
core/views/contact.php
Normal file
|
@ -0,0 +1,32 @@
|
|||
<?php
|
||||
if (!defined('IN_SYS')) {
|
||||
// exit('禁止访问');
|
||||
header("Location: ../../contact.php");
|
||||
exit;
|
||||
}
|
||||
?>
|
||||
|
||||
<div class="container">
|
||||
<div class="page-header">
|
||||
<h1><?php echo $LANG['contact_us']; ?></h1>
|
||||
</div>
|
||||
</div>
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
<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="http://byet.net" target="_blank">Knowledge Base</a></p>
|
||||
</div>
|
||||
<div class="col-sm-12 col-md-12">
|
||||
<h2><?php echo $LANG['address']; ?></h2>
|
||||
<p>Shanghai China.</p>
|
||||
</div>
|
||||
<div class="col-sm-12 col-md-12">
|
||||
<h2>Others</h2>
|
||||
<p class="alert alert-warning"><i class="glyphicon glyphicon-info-sign"></i> Crogram Inc.</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
|
@ -1,7 +1,7 @@
|
|||
<?php
|
||||
if (!defined('IN_SYS')) {
|
||||
// exit('禁止访问');
|
||||
header("Location: ../index.php");
|
||||
header("Location: ../../index.php");
|
||||
exit;
|
||||
}
|
||||
?>
|
35
core/views/header.php
Normal file
35
core/views/header.php
Normal file
|
@ -0,0 +1,35 @@
|
|||
<?php
|
||||
if (!defined('IN_SYS')) {
|
||||
// exit('禁止访问');
|
||||
header("Location: ../../index.php");
|
||||
exit;
|
||||
}
|
||||
?>
|
||||
<!DOCTYPE html>
|
||||
<html lang="<?php echo $current_lang; ?>">
|
||||
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<title><?php echo $title; ?></title>
|
||||
<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="<?php echo $description; ?>">
|
||||
<meta name="author" content="<?php echo $author; ?>">
|
||||
<?php if (!empty($google_site_verification)) { ?>
|
||||
<meta name="google-site-verification" content="<?php echo $google_site_verification; ?>" />
|
||||
<?php } ?>
|
||||
<link href="favicon.ico?_=<?php echo $static_release; ?>" rel="icon">
|
||||
<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="assets/html5shiv/html5shiv.min.js"></script>
|
||||
<script src="assets/respond/respond.min.js"></script>
|
||||
<![endif]-->
|
||||
<script type="text/javascript">
|
||||
var domain = "<?php echo $lang->getDomain(); ?>";
|
||||
var cur_lang = "<?php echo $current_lang; ?>";
|
||||
var ifastnet_aff = <?php echo $iFastNetAff; ?>;
|
||||
</script>
|
||||
</head>
|
||||
|
||||
<body>
|
33
core/views/help.php
Normal file
33
core/views/help.php
Normal file
|
@ -0,0 +1,33 @@
|
|||
<?php
|
||||
if (!defined('IN_SYS')) {
|
||||
// exit('禁止访问');
|
||||
header("Location: ../../help.php");
|
||||
exit;
|
||||
}
|
||||
|
||||
?>
|
||||
|
||||
<div class="container">
|
||||
<div class="page-header">
|
||||
<h1><?php echo I18N('help'); ?></h1>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="container">
|
||||
<div class="panel-group" id="accordion" role="tablist" aria-multiselectable="true">
|
||||
<?php foreach ($questions as $key => $value) { ?>
|
||||
<div class="panel panel-default">
|
||||
<div class="panel-heading" role="tab" id="heading-<?php echo $key; ?>">
|
||||
<a class="panel-title<?php echo $key == 0 ? '' : ' collapsed'; ?>" role="button" data-toggle="collapse" data-parent="#accordion" href="#questions-<?php echo $key; ?>" aria-expanded="<?php echo $key == 0 ? 'true' : 'false'; ?>" aria-controls="questions-<?php echo $key; ?>">
|
||||
<?php echo $key + 1; ?>.<?php echo $value["title"]; ?>
|
||||
</a>
|
||||
</div>
|
||||
<div id="questions-<?php echo $key; ?>" class="panel-collapse collapse<?php echo $key == 0 ? ' in' : ''; ?>" role="tabpanel" aria-labelledby="heading-<?php echo $key; ?>">
|
||||
<div class="panel-body">
|
||||
<p><?php echo $value["content"]; ?></p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<?php } ?>
|
||||
</div>
|
||||
</div>
|
58
core/views/index.php
Normal file
58
core/views/index.php
Normal file
|
@ -0,0 +1,58 @@
|
|||
<?php
|
||||
if (!defined('IN_SYS')) {
|
||||
// exit('禁止访问');
|
||||
header("Location: ../../index.php");
|
||||
exit;
|
||||
}
|
||||
?>
|
||||
|
||||
<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-primary" href="register.php" role="button">Get More »</a></p>
|
||||
</div>
|
||||
</div>
|
||||
<!-- <div class="container">
|
||||
<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>
|
||||
<button class="btn btn-default check-domain">Check</button>
|
||||
</div> -->
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
<div class="col-md-6">
|
||||
<h2>Automated features!</h2>
|
||||
<p><img src="assets/images/img6.jpg" alt="server" class="img-rounded"></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>
|
||||
<p><img src="assets/images/img5.jpg" alt="server" class="img-rounded"></p>
|
||||
<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>
|
||||
<!-- <script type="text/javascript">
|
||||
$('.check-domain').click(function () {
|
||||
var domain = $('#domainInput').val()
|
||||
if (domain) {
|
||||
$.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> -->
|
|
@ -1,7 +1,7 @@
|
|||
<?php
|
||||
if (!defined('IN_SYS')) {
|
||||
// exit('禁止访问');
|
||||
header("Location: ../index.php");
|
||||
header("Location: ../../index.php");
|
||||
exit;
|
||||
}
|
||||
// $html = file_get_contents('https://ifastnet.com/privacy.php');
|
|
@ -1,7 +1,7 @@
|
|||
<?php
|
||||
if (!defined('IN_SYS')) {
|
||||
// exit('禁止访问');
|
||||
header("Location: ../index.php");
|
||||
header("Location: ../../index.php");
|
||||
exit;
|
||||
}
|
||||
// $html = file_get_contents('https://ifastnet.com/portal/terms.php');
|
65
core/views/login.php
Normal file
65
core/views/login.php
Normal file
|
@ -0,0 +1,65 @@
|
|||
<?php
|
||||
if (!defined('IN_SYS')) {
|
||||
// exit('禁止访问');
|
||||
header("Location: ../../login.php");
|
||||
exit;
|
||||
}
|
||||
?>
|
||||
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
<div class="col-md-6 col-sm-6 margin-auto">
|
||||
<div class="panel panel-default">
|
||||
<div class="panel-heading">
|
||||
<h3 class="panel-title"><?php echo $LANG['please_login']; ?></h3>
|
||||
</div>
|
||||
<div class="panel-body">
|
||||
<form class="form-group form-horizontal form-account" role="form" action="//cpanel.<?= $domain ?>/login.php" method="post" name="login">
|
||||
<div class="form-group">
|
||||
<input type="text" name="uname" class="form-control" placeholder="<?php echo $LANG['input_username']; ?>" required autofocus autocomplete="off">
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<input type="password" name="passwd" class="form-control" placeholder="<?php echo $LANG['input_password']; ?>" required autocomplete="off">
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<select class="form-control" name="language" id="inputLanguage">
|
||||
<option disabled><?php echo $LANG['choose_from_below']; ?></option>
|
||||
<?php foreach ($languages as $key => $value) {
|
||||
$selected = $key == $current_lang ? 'selected="selected"' : '';
|
||||
echo '<option value="' . $languages[$key][1] . '" ' . $selected . '>' . $languages[$key][0] . '</option>';
|
||||
} ?>
|
||||
</select>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<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>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<button type="submit" name="submit" class="btn btn-primary btn-block"><?php echo $LANG['login']; ?></button>
|
||||
</div>
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- <script type="text/javascript">
|
||||
var domain = "<?php echo $lang->getDomain(); ?>";
|
||||
var cur_language = "<?php echo $current_lang; ?>";
|
||||
function change_language(lan) {
|
||||
setCookie('lang', lan, 1, '/', domain, false);
|
||||
if (cur_language == lan) {
|
||||
return;
|
||||
}
|
||||
<?php if (!$_POST) { ?>document.location.reload();<?php } ?>
|
||||
|
||||
}
|
||||
$(".language-change-click").click(function (x) {
|
||||
change_language(x.target.dataset.language);
|
||||
})
|
||||
</script> -->
|
60
core/views/navbar.php
Normal file
60
core/views/navbar.php
Normal file
|
@ -0,0 +1,60 @@
|
|||
<?php
|
||||
if (!defined('IN_SYS')) {
|
||||
// exit('禁止访问');
|
||||
header("Location: ../../index.php");
|
||||
exit;
|
||||
}
|
||||
?>
|
||||
|
||||
<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="support.php"><?php echo $LANG['support']; ?></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="contact.php"><?php echo $LANG['contact']; ?></a></li>
|
||||
<li><a href="help.php"><?php echo $LANG['help']; ?></a></li>
|
||||
<li><a href="support.php"><?php echo $LANG['support']; ?></a></li>
|
||||
<li class="divider"></li>
|
||||
<li class="dropdown-header"><?php echo $LANG['aboutus']; ?></li>
|
||||
<li><a href="about.php"><?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.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>
|
||||
<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>
|
||||
<a class="hidden-xs" href="https://github.com/uiisc/uiisc.com" title="Source on Github" target="_blank"><svg class="octocat" viewBox="0 0 250 250" style="border: 0;color: #f4f5f6;fill: #5e6772;height: 5.2rem;width: 5.2rem;position: fixed;right: 0;top: 0;z-index: 1">
|
||||
<path d="M0,0 L115,115 L130,115 L142,142 L250,250 L250,0 Z"></path>
|
||||
<path class="octocat-arm" d="M128.3,109.0 C113.8,99.7 119.0,89.6 119.0,89.6 C122.0,82.7 120.5,78.6 120.5,78.6 C119.2,72.0 123.4,76.3 123.4,76.3 C127.3,80.9 125.5,87.3 125.5,87.3 C122.9,97.6 130.6,101.9 134.4,103.2"></path>
|
||||
<path class="octocat-body" d="M115.0,115.0 C114.9,115.1 118.7,116.5 119.8,115.4 L133.7,101.6 C136.9,99.2 139.9,98.4 142.2,98.6 C133.8,88.0 127.5,74.4 143.8,58.0 C148.5,53.4 154.0,51.2 159.7,51.0 C160.3,49.4 163.2,43.6 171.4,40.1 C171.4,40.1 176.1,42.5 178.8,56.2 C183.1,58.6 187.2,61.8 190.9,65.4 C194.5,69.0 197.7,73.2 200.1,77.6 C213.8,80.2 216.3,84.9 216.3,84.9 C212.7,93.1 206.9,96.0 205.4,96.6 C205.1,102.4 203.0,107.8 198.3,112.5 C181.9,128.9 168.3,122.5 157.7,114.1 C157.9,116.9 156.7,120.9 152.7,124.9 L141.0,136.5 C139.8,137.7 141.6,141.9 141.8,141.8 Z"></path>
|
||||
</svg></a>
|
||||
</nav>
|
||||
</div>
|
54
core/views/news.php
Normal file
54
core/views/news.php
Normal file
|
@ -0,0 +1,54 @@
|
|||
<?php
|
||||
if (!defined('IN_SYS')) {
|
||||
// exit('禁止访问');
|
||||
header("Location: ../../news.php");
|
||||
exit;
|
||||
}
|
||||
?>
|
||||
|
||||
<div class="container">
|
||||
<div class="panel panel-default">
|
||||
<div class="panel-body">
|
||||
<h2>free hosting news</h2>
|
||||
<p>We proudly announce the following new features on all free hosting accounts!..</p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="panel panel-default">
|
||||
<div class="panel-heading">
|
||||
<h3 class="panel-title">1. cPanel x3 theme</h3>
|
||||
</div>
|
||||
<div class="panel-body">
|
||||
The popular and professional x3 theme is now available for all free hosting accounts.
|
||||
</div>
|
||||
</div>
|
||||
<div class="panel panel-default">
|
||||
<div class="panel-heading">
|
||||
<h3 class="panel-title">2. Automatic HTTP/SSL</h3>
|
||||
</div>
|
||||
<div class="panel-body">
|
||||
We are the only webhost's in the world to offer automatic free SSL/HTTP's encryption on all free hosted domain names. You can instantly browse any domain on our network on a https:// url.
|
||||
</div>
|
||||
</div>
|
||||
<div class="panel panel-default">
|
||||
<div class="panel-heading">
|
||||
<h3 class="panel-title">3. Softaculous 1 click script installer</h3>
|
||||
</div>
|
||||
<div class="panel-body">
|
||||
Softaculous is an auto installer for cPanel. Unlike other auto installers Softaculous is much faster, well designed and it installs all scripts in just ONE STEP.
|
||||
</div>
|
||||
</div>
|
||||
<div class="panel panel-default">
|
||||
<div class="panel-body">
|
||||
<div class="media">
|
||||
<div class="media-left media-middle">
|
||||
<img src="assets/images/cluster.jpg" alt="rack">
|
||||
</div>
|
||||
<div class="media-body">
|
||||
<h4 class="media-heading">Value for free</h4>
|
||||
<p>Our cluster-based GRID network features hundreds of server nodes using the right software for the right job powered by Linux and Unix operating systems.</p>
|
||||
<p><?= $title_s ?> hosting has the right services for you and at the right price... $0.00!</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
57
core/views/payment-methods.php
Normal file
57
core/views/payment-methods.php
Normal file
|
@ -0,0 +1,57 @@
|
|||
<?php
|
||||
if (!defined('IN_SYS')) {
|
||||
// exit('禁止访问');
|
||||
header("Location: ../../payment-methods.php");
|
||||
exit;
|
||||
}
|
||||
// $html = file_get_contents('https://ifastnet.com/payment-methods.php');
|
||||
// preg_match('/<footer[^>]*id="footer"[^>]*>(.*?) <//footer>/si', $html, $match);
|
||||
?>
|
||||
|
||||
<div class="container">
|
||||
<div class="page-header">
|
||||
<h1 class="text-center"><?php echo $LANG['payment_methods']; ?></a></h1>
|
||||
<p class="text-center">Payment methods information</p>
|
||||
</div>
|
||||
</div>
|
||||
<section class="section-wrap paymentsInfo">
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
<div class="hidden-xs col-sm-12 col-md-12">
|
||||
<h2><?php echo $LANG['payment_methods']; ?></h2>
|
||||
</div>
|
||||
<div class="col-sm-12 col-md-12">
|
||||
<p>We currently accept payments using 3 major payment gateways:</p>
|
||||
<ul>
|
||||
<li><strong>Paypal</strong> - using credit cards and paypal accounts</li>
|
||||
<li><strong>WorldPay</strong> - instant credit cards payments</li>
|
||||
<li><strong>2CheckOut</strong> - instant and recurrent credit cards payments as well as paypal payments where countries support it.</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
<section class="section-wrap sectionPaymentLogos">
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
<div class="col-sm-12 col-md-12">
|
||||
<div class="col-sm-12 col-md-12">
|
||||
<img src="assets/images/payment/paypal.jpg" border="0" alt="Paypal payments">
|
||||
<img src="assets/images/payment/poweredByWorldPay.gif" border="0" alt="Worldpay payments">
|
||||
<img src="assets/images/payment/2co11.jpg" border="0" alt="2CheckOut payments">
|
||||
</div>
|
||||
<div class="col-sm-12 col-md-12">
|
||||
<img src="assets/images/payment/visa_debit.gif" border="0" alt="Visa Debit payments supported by WorldPay">
|
||||
<img src="assets/images/payment/visa_electron.gif" border="0" alt="Visa Electron payments supported by WorldPay">
|
||||
<img src="assets/images/payment/mastercard.gif" border="0" alt="Mastercard payments supported by WorldPay">
|
||||
<img src="assets/images/payment/maestro.gif" border="0" alt="Maestro payments supported by WorldPay">
|
||||
<img src="assets/images/payment/AMEX.gif" border="0" alt="American Express payments supported by WorldPay">
|
||||
<img src="assets/images/payment/diners.gif" border="0" alt="Diners payments supported by WorldPay">
|
||||
<img src="assets/images/payment/JCB.gif" border="0" alt="JCB payments supported by WorldPay">
|
||||
<img src="assets/images/payment/laser.gif" border="0" alt="Laser payments supported by WorldPay">
|
||||
<img src="assets/images/payment/ELV.gif" border="0" alt="ELV payments supported by WorldPay">
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
89
core/views/register.php
Normal file
89
core/views/register.php
Normal file
|
@ -0,0 +1,89 @@
|
|||
<?php
|
||||
if (!defined('IN_SYS')) {
|
||||
// exit('禁止访问');
|
||||
header("Location: ../../register.php");
|
||||
exit;
|
||||
}
|
||||
?>
|
||||
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
<div class="col-md-6 col-sm-6 margin-auto">
|
||||
<div class="panel panel-default">
|
||||
<div class="panel-heading">
|
||||
<h3 class="panel-title"><?php echo $LANG['signup_free_hosting']; ?></h3>
|
||||
</div>
|
||||
<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 value=""><?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 value=""><?php echo $LANG['choose_from_below']; ?></option>
|
||||
<option value="english" data-i18n="english">English</option>
|
||||
<option value="non-english" 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>
|
||||
</div>
|
||||
</div>
|
104
core/views/solution.php
Normal file
104
core/views/solution.php
Normal file
|
@ -0,0 +1,104 @@
|
|||
<?php
|
||||
if (!defined('IN_SYS')) {
|
||||
// exit('禁止访问');
|
||||
header("Location: ../../solution.php");
|
||||
exit;
|
||||
}
|
||||
?>
|
||||
|
||||
<div class="container">
|
||||
<div class="page-header">
|
||||
<h1><?php echo $LANG['solution']; ?></h1>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
<div class="col-sm-4">
|
||||
<div class="list-group">
|
||||
<div class="list-group-item">
|
||||
<a class="btn btn-link btn-xs pull-right" href="register.php" role="button"><?php echo $LANG['register']; ?></a>
|
||||
<?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 disabled"><span class="badge"><?php echo $LANG['not-support']; ?></span><?php echo $LANG['free-domains']; ?></div>
|
||||
<div class="list-group-item"><span class="badge">10</span><?php echo $LANG['sub-domains']; ?></div>
|
||||
<div class="list-group-item"><span class="badge">10</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">10 GB</span><?php echo $LANG['disk-quota']; ?></div>
|
||||
<div class="list-group-item"><span class="badge">100 GB</span><?php echo $LANG['monthly-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">Latest vPanel with Softaculous</div>
|
||||
<div class="list-group-item">Latest PHP and mySQL</div>
|
||||
<div class="list-group-item">SiteBuilder</div>
|
||||
<div class="list-group-item">1 Click Script Installer</div>
|
||||
<div class="list-group-item disabled"><span class="badge"><?php echo $LANG['not-support']; ?></span>Node.JS</div>
|
||||
<div class="list-group-item disabled"><span class="badge"><?php echo $LANG['not-support']; ?></span>Postgres</div>
|
||||
<div class="list-group-item disabled"><span class="badge"><?php echo $LANG['not-support']; ?></span>Free SSL Certificate</div>
|
||||
<div class="list-group-item disabled"><span class="badge"><?php echo $LANG['not-support']; ?></span>Custom CRON Jobs</div>
|
||||
<div class="list-group-item text-center">
|
||||
<!-- <a class="btn btn-default" href="plan/free.php" role="button">详情</a> -->
|
||||
<a class="btn btn-primary" href="register.php" role="button"><?php echo $LANG['register']; ?></a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-sm-4">
|
||||
<div class="list-group">
|
||||
<div class="list-group-item">
|
||||
<a class="btn btn-link btn-xs pull-right" href="register.php" role="button"><?php echo $LANG['register']; ?></a>
|
||||
<?php echo $LANG['host-plan-super']; ?>
|
||||
</div>
|
||||
<div class="list-group-item"><span class="badge">100</span><?php echo $LANG['ftp-accounts']; ?></div>
|
||||
<div class="list-group-item"><span class="badge">6</span><?php echo $LANG['free-domains']; ?></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">20</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['monthly-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">Latest cPanel with Softaculous</div>
|
||||
<div class="list-group-item">Latest PHP and mySQL</div>
|
||||
<div class="list-group-item">SiteBuilder</div>
|
||||
<div class="list-group-item">1 Click Script Installer</div>
|
||||
<div class="list-group-item">Node.JS</div>
|
||||
<div class="list-group-item">Postgres</div>
|
||||
<div class="list-group-item">Free SSL Certificate</div>
|
||||
<div class="list-group-item">Custom CRON Jobs</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>
|
||||
<div class="col-sm-4">
|
||||
<div class="list-group">
|
||||
<div class="list-group-item">
|
||||
<a class="btn btn-link btn-xs pull-right" href="register.php" role="button"><?php echo $LANG['register']; ?></a>
|
||||
<?php echo $LANG['host-plan-ultimate']; ?>
|
||||
</div>
|
||||
<div class="list-group-item"><span class="badge"><?php echo $LANG['unlimited']; ?></span><?php echo $LANG['ftp-accounts']; ?></div>
|
||||
<div class="list-group-item"><span class="badge">21</span><?php echo $LANG['free-domains']; ?></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['monthly-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">Latest cPanel with Softaculous</div>
|
||||
<div class="list-group-item">Latest PHP and mySQL</div>
|
||||
<div class="list-group-item">SiteBuilder</div>
|
||||
<div class="list-group-item">1 Click Script Installer</div>
|
||||
<div class="list-group-item">Node.JS</div>
|
||||
<div class="list-group-item">Postgres</div>
|
||||
<div class="list-group-item">Free SSL Certificate</div>
|
||||
<div class="list-group-item">Custom CRON Jobs</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>
|
||||
</div>
|
||||
</div>
|
36
core/views/support.php
Normal file
36
core/views/support.php
Normal file
|
@ -0,0 +1,36 @@
|
|||
<?php
|
||||
if (!defined('IN_SYS')) {
|
||||
// exit('禁止访问');
|
||||
header("Location: ../../support.php");
|
||||
exit;
|
||||
}
|
||||
?>
|
||||
|
||||
<div class="container">
|
||||
<div class="page-header text-center">
|
||||
<h1><?php echo I18N('Technical Support'); ?></h1>
|
||||
<!-- <h3>24/7 Availability</h3> -->
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="container">
|
||||
<p>If you have any problems or have the need to contact us to ask a question, you can contact us in the following ways:</p>
|
||||
<p><br /></p>
|
||||
<div class="row">
|
||||
<div class="col-md-4 text-center">
|
||||
<img src="assets/images/tickets.jpg" alt="Tickets">
|
||||
<h3><?php echo I18N('Tickets'); ?></h3>
|
||||
<p>You can submit a support ticket from VistaPanel, we will reply you as soon as possible.</p>
|
||||
</div>
|
||||
<div class="col-md-4 text-center">
|
||||
<img src="assets/images/emails.jpg" alt="Emails">
|
||||
<h3><?php echo I18N('Emails'); ?></h3>
|
||||
<p>You can email us, but we use only the following email for technical support: <a>support@uiisc.com</a></p>
|
||||
</div>
|
||||
<div class="col-md-4 text-center">
|
||||
<img src="assets/images/forums.jpg" alt="Forums">
|
||||
<h3><?php echo I18N('Forums'); ?></h3>
|
||||
<p>You can also join our community forums if you want to interact with other users and get instant answers.</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
78
help.php
78
help.php
|
@ -2,77 +2,9 @@
|
|||
define('IN_SYS', true);
|
||||
require_once "core.php";
|
||||
|
||||
$title = $title . ' - ' . I18N('help');
|
||||
include("core/controllers/help.php");
|
||||
|
||||
$questions = [
|
||||
[
|
||||
"title" => "What is bandwidth ?",
|
||||
"content" => 'Bandwidth is the amount of data your website can transfer per month, every month the bandwidth counter will reset.'
|
||||
],
|
||||
[
|
||||
"title" => "How much files can I upload ?",
|
||||
"content" => "You're free to upload as much files as you want, but please be aware that the largest size for an individual file is limited to 10Mb."
|
||||
],
|
||||
[
|
||||
"title" => "How can I upload files ?",
|
||||
"content" => 'You have two ways, the first one (recommanded), you can download a FTP client software, you will find recommanded free softwares to download on the "Free FTP Software" from the "Files" section on VistaPanel. The second way is to use our free "Online File Manager" on VistaPanel.'
|
||||
],
|
||||
[
|
||||
"title" => "How can I use FTP ?",
|
||||
"content" => 'You can view our tutorial on how to setup and use FTP to manage your files <a href="http://tutorials.securesignup.net/premium-cpanel-hosting/file-management/via-ftp-2.html">here</a>.'
|
||||
],
|
||||
[
|
||||
"title" => "Do you allow PHP and MySQL databases ?",
|
||||
"content" => 'Yes, we allow PHP and MySQL.'
|
||||
],
|
||||
[
|
||||
"title" => "Do you offer PHPMyAdmin ?",
|
||||
"content" => 'Yes we do offer PHPMyAdmin.'
|
||||
],
|
||||
[
|
||||
"title" => "What type of websites are not allowed to be hosted ?",
|
||||
"content" => 'Anything illegal, websites that contains copyrighted files (warez), adult content, spamming scripts, web proxies etc... For more information please read our TOS.'
|
||||
],
|
||||
[
|
||||
"title" => "How do I report a website ?",
|
||||
"content" => 'We would really appreciate it, the best way is to open a ticket from VistaPanel, if not, you can email us at support@uiisc.com'
|
||||
],
|
||||
[
|
||||
"title" => "How do I get support ?",
|
||||
"content" => 'To get technical support, open a ticket from VistaPanel, email us at support@5sidc.com or join our community forums'
|
||||
],
|
||||
[
|
||||
"title" => "What details should I post when asking for support ?",
|
||||
"content" => "Don't post your account's password, including databases passwords! And just be specific."
|
||||
]
|
||||
]
|
||||
|
||||
?>
|
||||
<?php include("include/header.php"); ?>
|
||||
|
||||
<div class="container">
|
||||
<div class="page-header">
|
||||
<h1><?php echo I18N('help'); ?></h1>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="container">
|
||||
<div class="panel-group" id="accordion" role="tablist" aria-multiselectable="true">
|
||||
<?php foreach ($questions as $key => $value) { ?>
|
||||
<div class="panel panel-default">
|
||||
<div class="panel-heading" role="tab" id="heading-<?php echo $key; ?>">
|
||||
<a class="panel-title<?php echo $key == 0 ? '' : ' collapsed'; ?>" role="button" data-toggle="collapse" data-parent="#accordion" href="#questions-<?php echo $key; ?>" aria-expanded="<?php echo $key == 0 ? 'true' : 'false'; ?>" aria-controls="questions-<?php echo $key; ?>">
|
||||
<?php echo $key + 1; ?>.<?php echo $value["title"]; ?>
|
||||
</a>
|
||||
</div>
|
||||
<div id="questions-<?php echo $key; ?>" class="panel-collapse collapse<?php echo $key == 0 ? ' in' : ''; ?>" role="tabpanel" aria-labelledby="heading-<?php echo $key; ?>">
|
||||
<div class="panel-body">
|
||||
<p><?php echo $value["content"]; ?></p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<?php } ?>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<?php include "include/footer.php"; ?>
|
||||
include("core/views/header.php");
|
||||
include("core/views/navbar.php");
|
||||
include("core/views/help.php");
|
||||
include("core/views/footer.php");
|
||||
|
|
61
index.php
61
index.php
|
@ -1,57 +1,8 @@
|
|||
<?php
|
||||
define('IN_SYS', true);
|
||||
require_once ("core.php");
|
||||
?>
|
||||
<?php include ("include/header.php"); ?>
|
||||
define('IN_SYS', true);
|
||||
require_once("core.php");
|
||||
|
||||
<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-primary" href="register.php" role="button">Get More »</a></p>
|
||||
</div>
|
||||
</div>
|
||||
<!-- <div class="container">
|
||||
<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>
|
||||
<button class="btn btn-default check-domain">Check</button>
|
||||
</div> -->
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
<div class="col-md-6">
|
||||
<h2>Automated features!</h2>
|
||||
<p><img src="assets/images/img6.jpg" alt="server" class="img-rounded"></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>
|
||||
<p><img src="assets/images/img5.jpg" alt="server" class="img-rounded"></p>
|
||||
<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>
|
||||
<!-- <script type="text/javascript">
|
||||
$('.check-domain').click(function () {
|
||||
var domain = $('#domainInput').val()
|
||||
if (domain) {
|
||||
$.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> -->
|
||||
<?php include ("include/footer.php"); ?>
|
||||
include("core/views/header.php");
|
||||
include("core/views/navbar.php");
|
||||
include("core/views/index.php");
|
||||
include("core/views/footer.php");
|
||||
|
|
|
@ -1,87 +0,0 @@
|
|||
<?php
|
||||
if (!defined('IN_SYS')) {
|
||||
// exit('禁止访问');
|
||||
header("Location: ../index.php");
|
||||
exit;
|
||||
}
|
||||
?>
|
||||
<!DOCTYPE html>
|
||||
<html lang="<?php echo $current_lang; ?>">
|
||||
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<title><?php echo $title; ?></title>
|
||||
<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="<?php echo $description; ?>">
|
||||
<meta name="author" content="<?php echo $author; ?>">
|
||||
<?php if (!empty($google_site_verification)) { ?><meta name="google-site-verification" content="<?php echo $google_site_verification; ?>" />
|
||||
<?php } ?>
|
||||
<link href="favicon.ico?_=<?php echo $static_release; ?>" rel="icon">
|
||||
<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="assets/html5shiv/html5shiv.min.js"></script>
|
||||
<script src="assets/respond/respond.min.js"></script>
|
||||
<![endif]-->
|
||||
<script type="text/javascript">
|
||||
var domain = "<?php echo $lang->getDomain(); ?>";
|
||||
var cur_lang = "<?php echo $current_lang; ?>";
|
||||
var ifastnet_aff = <?php echo $iFastNetAff; ?>;
|
||||
</script>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
|
||||
<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="support.php"><?php echo $LANG['support']; ?></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="contact.php"><?php echo $LANG['contact']; ?></a></li>
|
||||
<li><a href="help.php"><?php echo $LANG['help']; ?></a></li>
|
||||
<li><a href="support.php"><?php echo $LANG['support']; ?></a></li>
|
||||
<li class="divider"></li>
|
||||
<li class="dropdown-header"><?php echo $LANG['aboutus']; ?></li>
|
||||
<li><a href="about.php"><?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.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>
|
||||
<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>
|
||||
<a class="hidden-xs" href="https://github.com/uiisc/uiisc.com" title="Source on Github" target="_blank"><svg class="octocat" viewBox="0 0 250 250" style="border: 0;color: #f4f5f6;fill: #5e6772;height: 5.2rem;width: 5.2rem;position: fixed;right: 0;top: 0;z-index: 1">
|
||||
<path d="M0,0 L115,115 L130,115 L142,142 L250,250 L250,0 Z"></path>
|
||||
<path class="octocat-arm" d="M128.3,109.0 C113.8,99.7 119.0,89.6 119.0,89.6 C122.0,82.7 120.5,78.6 120.5,78.6 C119.2,72.0 123.4,76.3 123.4,76.3 C127.3,80.9 125.5,87.3 125.5,87.3 C122.9,97.6 130.6,101.9 134.4,103.2"></path>
|
||||
<path class="octocat-body" d="M115.0,115.0 C114.9,115.1 118.7,116.5 119.8,115.4 L133.7,101.6 C136.9,99.2 139.9,98.4 142.2,98.6 C133.8,88.0 127.5,74.4 143.8,58.0 C148.5,53.4 154.0,51.2 159.7,51.0 C160.3,49.4 163.2,43.6 171.4,40.1 C171.4,40.1 176.1,42.5 178.8,56.2 C183.1,58.6 187.2,61.8 190.9,65.4 C194.5,69.0 197.7,73.2 200.1,77.6 C213.8,80.2 216.3,84.9 216.3,84.9 C212.7,93.1 206.9,96.0 205.4,96.6 C205.1,102.4 203.0,107.8 198.3,112.5 C181.9,128.9 168.3,122.5 157.7,114.1 C157.9,116.9 156.7,120.9 152.7,124.9 L141.0,136.5 C139.8,137.7 141.6,141.9 141.8,141.8 Z"></path>
|
||||
</svg></a>
|
||||
</nav>
|
||||
</div>
|
|
@ -1,49 +0,0 @@
|
|||
<?php
|
||||
if(!defined('IN_SYS')) {
|
||||
// exit('禁止访问');
|
||||
header("Location: ../index.php");
|
||||
exit;
|
||||
}
|
||||
?>
|
||||
|
||||
<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 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="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.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_payment-methods.php"><?php echo $LANG['payment_methods']; ?></a></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>
|
||||
</div>
|
||||
</div>
|
||||
<a class="hidden-xs" href="https://github.com/uiisc/uiisc.com" title="Source on Github" target="_blank"><svg class="octocat" viewBox="0 0 250 250" style="border: 0;color: #f4f5f6;fill: #5e6772;height: 5.2rem;width: 5.2rem;position: fixed;right: 0;top: 0;z-index: 1"><path d="M0,0 L115,115 L130,115 L142,142 L250,250 L250,0 Z"></path><path class="octocat-arm" d="M128.3,109.0 C113.8,99.7 119.0,89.6 119.0,89.6 C122.0,82.7 120.5,78.6 120.5,78.6 C119.2,72.0 123.4,76.3 123.4,76.3 C127.3,80.9 125.5,87.3 125.5,87.3 C122.9,97.6 130.6,101.9 134.4,103.2"></path><path class="octocat-body" d="M115.0,115.0 C114.9,115.1 118.7,116.5 119.8,115.4 L133.7,101.6 C136.9,99.2 139.9,98.4 142.2,98.6 C133.8,88.0 127.5,74.4 143.8,58.0 C148.5,53.4 154.0,51.2 159.7,51.0 C160.3,49.4 163.2,43.6 171.4,40.1 C171.4,40.1 176.1,42.5 178.8,56.2 C183.1,58.6 187.2,61.8 190.9,65.4 C194.5,69.0 197.7,73.2 200.1,77.6 C213.8,80.2 216.3,84.9 216.3,84.9 C212.7,93.1 206.9,96.0 205.4,96.6 C205.1,102.4 203.0,107.8 198.3,112.5 C181.9,128.9 168.3,122.5 157.7,114.1 C157.9,116.9 156.7,120.9 152.7,124.9 L141.0,136.5 C139.8,137.7 141.6,141.9 141.8,141.8 Z"></path></svg></a>
|
||||
</nav>
|
||||
</div>
|
|
@ -4,15 +4,15 @@ require_once "core.php";
|
|||
// $title = 'About UIISC';
|
||||
$section = empty($_GET["s"]) ? "terms" : $_GET["s"];
|
||||
|
||||
include("index/header.php");
|
||||
include("core/views/header.php");
|
||||
|
||||
switch ($section) {
|
||||
case "privacy":
|
||||
include("index/legal_privacy.php");
|
||||
include("core/views/legal_privacy.php");
|
||||
break;
|
||||
case "terms":
|
||||
default:
|
||||
include("index/legal_terms.php");
|
||||
include("core/views/legal_terms.php");
|
||||
}
|
||||
|
||||
include("index/footer.php");
|
||||
include("core/views/footer.php");
|
||||
|
|
65
login.php
65
login.php
|
@ -1,61 +1,10 @@
|
|||
<?php
|
||||
define('IN_SYS', true);
|
||||
require_once ("core.php");
|
||||
$title = $title . ' - ' . $LANG['login'];
|
||||
?>
|
||||
<?php include ("include/header.php"); ?>
|
||||
define('IN_SYS', true);
|
||||
require_once("core.php");
|
||||
|
||||
<div class="container">
|
||||
<div class="panel panel-default">
|
||||
<div class="panel-heading">
|
||||
<h3 class="panel-title"><?php echo $LANG['please_login']; ?></h3>
|
||||
</div>
|
||||
<div class="panel-body">
|
||||
<form class="form-group form-horizontal form-account" role="form" action="//cpanel.<?=$domain?>/login.php" method="post" name="login">
|
||||
<div class="form-group">
|
||||
<input type="text" name="uname" class="form-control" placeholder="<?php echo $LANG['input_username']; ?>" required autofocus autocomplete="off">
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<input type="password" name="passwd" class="form-control" placeholder="<?php echo $LANG['input_password']; ?>" required autocomplete="off">
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<select class="form-control" name="language" id="inputLanguage">
|
||||
<option disabled><?php echo $LANG['choose_from_below']; ?></option>
|
||||
<?php foreach ($languages as $key => $value) {
|
||||
$selected = $key == $current_lang ? 'selected="selected"' : '';
|
||||
echo '<option value="' .$languages[$key][1]. '" ' .$selected . '>' .$languages[$key][0]. '</option>';
|
||||
}?>
|
||||
</select>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<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>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<button type="submit" name="submit" class="btn btn-primary btn-block"><?php echo $LANG['login']; ?></button>
|
||||
</div>
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
include("core/controllers/login.php");
|
||||
|
||||
<!-- <script type="text/javascript">
|
||||
var domain = "<?php echo $lang->getDomain(); ?>";
|
||||
var cur_language = "<?php echo $current_lang; ?>";
|
||||
function change_language(lan) {
|
||||
setCookie('lang', lan, 1, '/', domain, false);
|
||||
if (cur_language == lan) {
|
||||
return;
|
||||
}
|
||||
<?php if (!$_POST) {?>document.location.reload();<?php }?>
|
||||
|
||||
}
|
||||
$(".language-change-click").click(function (x) {
|
||||
change_language(x.target.dataset.language);
|
||||
})
|
||||
</script> -->
|
||||
<?php include ("include/footer.php"); ?>
|
||||
include("core/views/header.php");
|
||||
include("core/views/navbar.php");
|
||||
include("core/views/login.php");
|
||||
include("core/views/footer.php");
|
||||
|
|
|
@ -1,2 +0,0 @@
|
|||
<?php
|
||||
echo "member module";
|
|
@ -1,2 +0,0 @@
|
|||
<?php
|
||||
header("Location: ../member.php");
|
59
news.php
59
news.php
|
@ -1,55 +1,10 @@
|
|||
<?php
|
||||
define('IN_SYS', true);
|
||||
require_once ("core.php");
|
||||
$title = $title . ' - ' . $LANG['news'];
|
||||
?>
|
||||
<?php include ("include/header.php"); ?>
|
||||
define('IN_SYS', true);
|
||||
require_once("core.php");
|
||||
|
||||
<div class="container">
|
||||
<div class="panel panel-default">
|
||||
<div class="panel-body">
|
||||
<h2>free hosting news</h2>
|
||||
<p>We proudly announce the following new features on all free hosting accounts!..</p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="panel panel-default">
|
||||
<div class="panel-heading">
|
||||
<h3 class="panel-title">1. cPanel x3 theme</h3>
|
||||
</div>
|
||||
<div class="panel-body">
|
||||
The popular and professional x3 theme is now available for all free hosting accounts.
|
||||
</div>
|
||||
</div>
|
||||
<div class="panel panel-default">
|
||||
<div class="panel-heading">
|
||||
<h3 class="panel-title">2. Automatic HTTP/SSL</h3>
|
||||
</div>
|
||||
<div class="panel-body">
|
||||
We are the only webhost's in the world to offer automatic free SSL/HTTP's encryption on all free hosted domain names. You can instantly browse any domain on our network on a https:// url.
|
||||
</div>
|
||||
</div>
|
||||
<div class="panel panel-default">
|
||||
<div class="panel-heading">
|
||||
<h3 class="panel-title">3. Softaculous 1 click script installer</h3>
|
||||
</div>
|
||||
<div class="panel-body">
|
||||
Softaculous is an auto installer for cPanel. Unlike other auto installers Softaculous is much faster, well designed and it installs all scripts in just ONE STEP.
|
||||
</div>
|
||||
</div>
|
||||
<div class="panel panel-default">
|
||||
<div class="panel-body">
|
||||
<div class="media">
|
||||
<div class="media-left media-middle">
|
||||
<img src="assets/images/cluster.jpg" alt="rack">
|
||||
</div>
|
||||
<div class="media-body">
|
||||
<h4 class="media-heading">Value for free</h4>
|
||||
<p>Our cluster-based GRID network features hundreds of server nodes using the right software for the right job powered by Linux and Unix operating systems.</p>
|
||||
<p><?=$title_s?> hosting has the right services for you and at the right price... $0.00!</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
include("core/controllers/news.php");
|
||||
|
||||
<?php include ("include/footer.php"); ?>
|
||||
include("core/views/header.php");
|
||||
include("core/views/navbar.php");
|
||||
include("core/views/news.php");
|
||||
include("core/views/footer.php");
|
||||
|
|
|
@ -1,58 +1,10 @@
|
|||
<?php
|
||||
define('IN_SYS', true);
|
||||
require_once ("core.php");
|
||||
// $html = file_get_contents('https://ifastnet.com/payment-methods.php');
|
||||
// preg_match('/<footer[^>]*id="footer"[^>]*>(.*?) <//footer>/si', $html, $match);
|
||||
$title = $title . ' - ' . $LANG['payment_methods'];
|
||||
?>
|
||||
<?php include ("include/header.php"); ?>
|
||||
define('IN_SYS', true);
|
||||
require_once("core.php");
|
||||
|
||||
<div class="container">
|
||||
<div class="page-header">
|
||||
<h1 class="text-center"><?php echo $LANG['payment_methods']; ?></a></h1>
|
||||
<p class="text-center">Payment methods information</p>
|
||||
</div>
|
||||
</div>
|
||||
<section class="section-wrap paymentsInfo">
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
<div class="hidden-xs col-sm-12 col-md-12">
|
||||
<h2><?php echo $LANG['payment_methods']; ?></h2>
|
||||
</div>
|
||||
<div class="col-sm-12 col-md-12">
|
||||
<p>We currently accept payments using 3 major payment gateways:</p>
|
||||
<ul>
|
||||
<li><strong>Paypal</strong> - using credit cards and paypal accounts</li>
|
||||
<li><strong>WorldPay</strong> - instant credit cards payments</li>
|
||||
<li><strong>2CheckOut</strong> - instant and recurrent credit cards payments as well as paypal payments where countries support it.</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
<section class="section-wrap sectionPaymentLogos">
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
<div class="col-sm-12 col-md-12">
|
||||
<div class="col-sm-12 col-md-12">
|
||||
<img src="assets/images/payment/paypal.jpg" border="0" alt="Paypal payments">
|
||||
<img src="assets/images/payment/poweredByWorldPay.gif" border="0" alt="Worldpay payments">
|
||||
<img src="assets/images/payment/2co11.jpg" border="0" alt="2CheckOut payments">
|
||||
</div>
|
||||
<div class="col-sm-12 col-md-12">
|
||||
<img src="assets/images/payment/visa_debit.gif" border="0" alt="Visa Debit payments supported by WorldPay">
|
||||
<img src="assets/images/payment/visa_electron.gif" border="0" alt="Visa Electron payments supported by WorldPay">
|
||||
<img src="assets/images/payment/mastercard.gif" border="0" alt="Mastercard payments supported by WorldPay">
|
||||
<img src="assets/images/payment/maestro.gif" border="0" alt="Maestro payments supported by WorldPay">
|
||||
<img src="assets/images/payment/AMEX.gif" border="0" alt="American Express payments supported by WorldPay">
|
||||
<img src="assets/images/payment/diners.gif" border="0" alt="Diners payments supported by WorldPay">
|
||||
<img src="assets/images/payment/JCB.gif" border="0" alt="JCB payments supported by WorldPay">
|
||||
<img src="assets/images/payment/laser.gif" border="0" alt="Laser payments supported by WorldPay">
|
||||
<img src="assets/images/payment/ELV.gif" border="0" alt="ELV payments supported by WorldPay">
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
include("core/controllers/payment-methods.php");
|
||||
|
||||
<?php include ("include/footer.php"); ?>
|
||||
include("core/views/header.php");
|
||||
include("core/views/navbar.php");
|
||||
include("core/views/payment-methods.php");
|
||||
include("core/views/footer.php");
|
||||
|
|
87
register.php
87
register.php
|
@ -1,81 +1,10 @@
|
|||
<?php
|
||||
define('IN_SYS', true);
|
||||
require_once "core.php";
|
||||
$security_id = md5(rand(6000, getrandmax())); // $security_id = md5(rand(6000,PHP_INT_MAX));
|
||||
$title = $title . ' - ' . $LANG['register'];
|
||||
?>
|
||||
<?php include ("include/header.php"); ?>
|
||||
define('IN_SYS', true);
|
||||
require_once "core.php";
|
||||
|
||||
<div class="container">
|
||||
<div class="panel panel-default">
|
||||
<div class="panel-heading">
|
||||
<h3 class="panel-title"><?php echo $LANG['signup_free_hosting']; ?></h3>
|
||||
</div>
|
||||
<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 value=""><?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 value=""><?php echo $LANG['choose_from_below']; ?></option>
|
||||
<option value="english" data-i18n="english">English</option>
|
||||
<option value="non-english" 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 "include/footer.php";?>
|
||||
include("core/controllers/register.php");
|
||||
|
||||
include("core/views/header.php");
|
||||
include("core/views/navbar.php");
|
||||
include("core/views/register.php");
|
||||
include("core/views/footer.php");
|
||||
|
|
109
solution.php
109
solution.php
|
@ -1,105 +1,10 @@
|
|||
<?php
|
||||
define('IN_SYS', true);
|
||||
require_once "core.php";
|
||||
$title = $title . ' - ' . $LANG['solution'];
|
||||
?>
|
||||
<?php include ("include/header.php"); ?>
|
||||
define('IN_SYS', true);
|
||||
require_once "core.php";
|
||||
|
||||
<div class="container">
|
||||
<div class="page-header">
|
||||
<h1><?php echo $LANG['solution']; ?></h1>
|
||||
</div>
|
||||
</div>
|
||||
include("core/controllers/solution.php");
|
||||
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
<div class="col-sm-4">
|
||||
<div class="list-group">
|
||||
<div class="list-group-item">
|
||||
<a class="btn btn-link btn-xs pull-right" href="register.php" role="button"><?php echo $LANG['register']; ?></a>
|
||||
<?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 disabled"><span class="badge"><?php echo $LANG['not-support']; ?></span><?php echo $LANG['free-domains']; ?></div>
|
||||
<div class="list-group-item"><span class="badge">10</span><?php echo $LANG['sub-domains']; ?></div>
|
||||
<div class="list-group-item"><span class="badge">10</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">10 GB</span><?php echo $LANG['disk-quota']; ?></div>
|
||||
<div class="list-group-item"><span class="badge">100 GB</span><?php echo $LANG['monthly-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">Latest vPanel with Softaculous</div>
|
||||
<div class="list-group-item">Latest PHP and mySQL</div>
|
||||
<div class="list-group-item">SiteBuilder</div>
|
||||
<div class="list-group-item">1 Click Script Installer</div>
|
||||
<div class="list-group-item disabled"><span class="badge"><?php echo $LANG['not-support']; ?></span>Node.JS</div>
|
||||
<div class="list-group-item disabled"><span class="badge"><?php echo $LANG['not-support']; ?></span>Postgres</div>
|
||||
<div class="list-group-item disabled"><span class="badge"><?php echo $LANG['not-support']; ?></span>Free SSL Certificate</div>
|
||||
<div class="list-group-item disabled"><span class="badge"><?php echo $LANG['not-support']; ?></span>Custom CRON Jobs</div>
|
||||
<div class="list-group-item text-center">
|
||||
<!-- <a class="btn btn-default" href="plan/free.php" role="button">详情</a> -->
|
||||
<a class="btn btn-primary" href="register.php" role="button"><?php echo $LANG['register']; ?></a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-sm-4">
|
||||
<div class="list-group">
|
||||
<div class="list-group-item">
|
||||
<a class="btn btn-link btn-xs pull-right" href="register.php" role="button"><?php echo $LANG['register']; ?></a>
|
||||
<?php echo $LANG['host-plan-super']; ?>
|
||||
</div>
|
||||
<div class="list-group-item"><span class="badge">100</span><?php echo $LANG['ftp-accounts']; ?></div>
|
||||
<div class="list-group-item"><span class="badge">6</span><?php echo $LANG['free-domains']; ?></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">20</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['monthly-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">Latest cPanel with Softaculous</div>
|
||||
<div class="list-group-item">Latest PHP and mySQL</div>
|
||||
<div class="list-group-item">SiteBuilder</div>
|
||||
<div class="list-group-item">1 Click Script Installer</div>
|
||||
<div class="list-group-item">Node.JS</div>
|
||||
<div class="list-group-item">Postgres</div>
|
||||
<div class="list-group-item">Free SSL Certificate</div>
|
||||
<div class="list-group-item">Custom CRON Jobs</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>
|
||||
<div class="col-sm-4">
|
||||
<div class="list-group">
|
||||
<div class="list-group-item">
|
||||
<a class="btn btn-link btn-xs pull-right" href="register.php" role="button"><?php echo $LANG['register']; ?></a>
|
||||
<?php echo $LANG['host-plan-ultimate']; ?>
|
||||
</div>
|
||||
<div class="list-group-item"><span class="badge"><?php echo $LANG['unlimited']; ?></span><?php echo $LANG['ftp-accounts']; ?></div>
|
||||
<div class="list-group-item"><span class="badge">21</span><?php echo $LANG['free-domains']; ?></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['monthly-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">Latest cPanel with Softaculous</div>
|
||||
<div class="list-group-item">Latest PHP and mySQL</div>
|
||||
<div class="list-group-item">SiteBuilder</div>
|
||||
<div class="list-group-item">1 Click Script Installer</div>
|
||||
<div class="list-group-item">Node.JS</div>
|
||||
<div class="list-group-item">Postgres</div>
|
||||
<div class="list-group-item">Free SSL Certificate</div>
|
||||
<div class="list-group-item">Custom CRON Jobs</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>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<?php include "include/footer.php";?>
|
||||
include("core/views/header.php");
|
||||
include("core/views/navbar.php");
|
||||
include("core/views/solution.php");
|
||||
include("core/views/footer.php");
|
||||
|
|
39
support.php
39
support.php
|
@ -2,38 +2,9 @@
|
|||
define('IN_SYS', true);
|
||||
require_once "core.php";
|
||||
|
||||
$title = $title . ' - ' . I18N('Technical Support');
|
||||
include("core/controllers/support.php");
|
||||
|
||||
?>
|
||||
<?php include("include/header.php"); ?>
|
||||
|
||||
<div class="container">
|
||||
<div class="page-header text-center">
|
||||
<h1><?php echo I18N('Technical Support'); ?></h1>
|
||||
<!-- <h3>24/7 Availability</h3> -->
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="container">
|
||||
<p>If you have any problems or have the need to contact us to ask a question, you can contact us in the following ways:</p>
|
||||
<p><br /></p>
|
||||
<div class="row">
|
||||
<div class="col-md-4 text-center">
|
||||
<img src="assets/images/tickets.jpg" alt="Tickets">
|
||||
<h3><?php echo I18N('Tickets'); ?></h3>
|
||||
<p>You can submit a support ticket from VistaPanel, we will reply you as soon as possible.</p>
|
||||
</div>
|
||||
<div class="col-md-4 text-center">
|
||||
<img src="assets/images/emails.jpg" alt="Emails">
|
||||
<h3><?php echo I18N('Emails'); ?></h3>
|
||||
<p>You can email us, but we use only the following email for technical support: <a>support@uiisc.com</a></p>
|
||||
</div>
|
||||
<div class="col-md-4 text-center">
|
||||
<img src="assets/images/forums.jpg" alt="Forums">
|
||||
<h3><?php echo I18N('Forums'); ?></h3>
|
||||
<p>You can also join our community forums if you want to interact with other users and get instant answers.</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<?php include "include/footer.php"; ?>
|
||||
include("core/views/header.php");
|
||||
include("core/views/navbar.php");
|
||||
include("core/views/support.php");
|
||||
include("core/views/footer.php");
|
||||
|
|
Loading…
Add table
Reference in a new issue