uiisc/index.php

68 lines
3.3 KiB
PHP
Raw Normal View History

2016-12-27 03:22:25 +00:00
<?php
2017-09-08 07:01:08 +00:00
define('IN_SYS', true);
require_once ("core.php");
2016-12-27 03:22:25 +00:00
?>
<!DOCTYPE html>
<html lang="<?php echo $current_lang; ?>">
2016-12-27 03:22:25 +00:00
<head>
<meta charset="utf-8">
<title><?=$title?></title>
2017-09-09 17:38:44 +00:00
<?php include ("headmate.php"); ?>
2016-12-27 03:22:25 +00:00
</head>
2018-11-16 07:39:39 +00:00
<body>
<?php include ("nav.php"); ?>
2018-05-15 14:35:31 +00:00
2018-11-16 07:39:39 +00:00
<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>
2018-12-07 10:48:15 +00:00
<p><a class="btn btn-primary" href="/register.php" role="button">Get More &raquo;</a></p>
2018-05-14 14:13:55 +00:00
</div>
</div>
2018-05-15 14:35:31 +00:00
<div class="container">
2018-11-16 07:39:39 +00:00
<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" />
2018-05-15 14:35:31 +00:00
</div>
2018-11-16 07:39:39 +00:00
<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>
<img src="images/img6.jpg" alt="server" class="img-rounded">
<!--<p class="text-danger">As of v8.0, Safari exhibits a bug in which resizing your browser horizontally causes rendering errors in the justified nav that are cleared upon refreshing.</p>-->
<p>We provide free FTP, PHP 5.3, MySQL and our very popular feature: The Automatic Script Installer Fantastico can install many popular scripts such as PHPbb2 and PHPbb3, Wordpress, Zen-Cart, osCommerce, MyBB, UseBB, MyLittle Forum, 4images, Coppermine, SMF, Joomla, e107, XOOPS, PHP Wind, CuteNews, Mambo, WikiWig and many more! No need to wait a long time uploading files, Our Automatic Script Installer deploys your files in seconds!.</p>
</div>
<div class="col-md-6">
<h2>Quotas and forum</h2>
<img src="images/img5.jpg" alt="server" class="img-rounded">
<p>Combined with our high bandwidth, space provisions and excellent sub-domain options, make us the optimal option. Our very popular Community Forums has been taken up excellently and active members are growing steadily, hence resulting in a better hosting and friendly experience..</p>
<h3>Cluster servers</h3>
<p>We are using a powerful cluster of webservers that are all interconnected to act as one giant super computer.</p>
</div>
2018-05-15 14:35:31 +00:00
</div>
2016-12-27 03:22:25 +00:00
</div>
2018-11-16 07:39:39 +00:00
<?php include ("footer.php"); ?>
2018-05-15 14:35:31 +00:00
<script type="text/javascript">
2018-11-16 07:39:39 +00:00
$('.check-domain').click(function () {
2018-05-15 14:35:31 +00:00
var domain = $('#domainInput').val()
if (domain) {
2018-11-16 07:39:39 +00:00
$.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);
}
})
2018-05-12 10:25:53 +00:00
}
2018-11-16 07:39:39 +00:00
})
2018-05-15 14:35:31 +00:00
</script>
2016-12-27 03:22:25 +00:00
</body>
2016-12-22 05:14:34 +00:00
</html>