index.php 3.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. <?php
  2. define('IN_SYS', true);
  3. require_once ("core.php");
  4. ?>
  5. <!DOCTYPE html>
  6. <html lang="<?php echo $current_language; ?>">
  7. <head>
  8. <meta charset="utf-8">
  9. <title><?=$title?></title>
  10. <?php include ("headmate.php"); ?>
  11. </head>
  12. <body>
  13. <?php include ("nav.php"); ?>
  14. <div class="container">
  15. <div class="jumbotron">
  16. <h1>Instant activation</h1>
  17. <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>
  18. <p>
  19. <a class="btn btn-lg btn-primary" href="./signup.php" role="button">More &raquo;</a>
  20. </p>
  21. </div>
  22. </div>
  23. <div class="container">
  24. <div class="form-group">
  25. <label for="domainInput">Domain</label>
  26. <input type="text" class="form-control" id="domainInput" placeholder="uiisc.com">
  27. <input type="button" class="btn btn-default check-domain" value="Check" />
  28. </div>
  29. <button class="btn btn-default check-domain">Check</button>
  30. </div>
  31. <div class="container">
  32. <div class="row">
  33. <div class="col-md-6">
  34. <h2>Automated features!</h2>
  35. <img src="images/img6.jpg" alt="server" class="img-rounded">
  36. <!--<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>-->
  37. <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>
  38. </div>
  39. <div class="col-md-6">
  40. <h2>Quotas and forum</h2>
  41. <img src="images/img5.jpg" alt="server" class="img-rounded">
  42. <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>
  43. <h3>Cluster servers</h3>
  44. <p>We are using a powerful cluster of webservers that are all interconnected to act as one giant super computer.</p>
  45. </div>
  46. </div>
  47. </div>
  48. <?php include ("footer.php"); ?>
  49. <script type="text/javascript">
  50. $('.check-domain').click(function () {
  51. var domain = $('#domainInput').val()
  52. if (domain) {
  53. $.ajax({
  54. method: 'post',
  55. url: 'https://api.croidc.cn/mofh/DomainCheck',
  56. dataType: 'json',
  57. contentType : "application/json",
  58. data: JSON.stringify({
  59. domain: domain
  60. }),
  61. success: function (x) {
  62. console.log(x);
  63. }
  64. })
  65. }
  66. })
  67. </script>
  68. </body>
  69. </html>