市场夺宝奇兵
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

135 lines
3.8 KiB

  1. <html>
  2. <head>
  3. <title>HomilyChart-弘历软件</title>
  4. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  5. <meta http-equiv="pragma" content="no-cache">
  6. <meta http-equiv="cache-control" content="no-cache">
  7. <meta http-equiv="expires" content="0">
  8. <meta http-equiv="keywords" content="keyword1,keyword2,keyword3">
  9. <meta http-equiv="description" content="This is my page">
  10. <style>
  11. * {
  12. box-sizing: border-box;
  13. }
  14. body {
  15. margin: 0;
  16. padding: 0;
  17. font-family: Arial, sans-serif;
  18. background-color: #f5f5f5;
  19. display: flex;
  20. justify-content: center;
  21. align-items: center;
  22. height: 100vh;
  23. margin: 0;
  24. }
  25. .container {
  26. max-width: 600px;
  27. margin: 0 auto;
  28. padding: 20px;
  29. background-color: #fff;
  30. border-radius: 5px;
  31. box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  32. }
  33. h1 {
  34. text-align: center;
  35. color: #4caf50;
  36. }
  37. p {
  38. font-size: 18px;
  39. line-height: 1.5;
  40. margin: 20px 0;
  41. }
  42. button {
  43. display: block;
  44. margin: 0 auto;
  45. padding: 10px 20px;
  46. background-color: #4caf50;
  47. color: #fff;
  48. border: none;
  49. border-radius: 5px;
  50. font-size: 18px;
  51. cursor: pointer;
  52. }
  53. @media screen and (max-width: 600px) {
  54. .container {
  55. max-width: 100%;
  56. border-radius: 0;
  57. }
  58. }
  59. </style>
  60. <!--
  61. <link rel="stylesheet" type="text/css" href="styles.css">
  62. -->
  63. <script type="text/javascript">
  64. function closew() {
  65. window.location.href = "about:blank";
  66. window.opener = null;
  67. window.open('', '_self');
  68. window.close();
  69. }
  70. function bakcj() {
  71. window.location.href = "https://hc.homilychart.com/hc/homilyjg.asp";
  72. }
  73. </script>
  74. <script type="text/javascript">
  75. function closew() {
  76. window.location.href = "about:blank";
  77. window.opener = null;
  78. window.open('', '_self');
  79. window.close();
  80. }
  81. window.onload = function () {
  82. // 设置倒计时时间(以毫秒为单位)
  83. var countdownTime = 5000; // 10秒
  84. // 显示倒计时
  85. var countdownElement = document.getElementById('countdown');
  86. countdownElement.textContent = Math.ceil(countdownTime / 1000);
  87. // 开始倒计时
  88. setTimeout(function () {
  89. // 在倒计时结束后跳转到目标页面
  90. window.location.href = './hkRegisterSuccess.html';
  91. }, countdownTime);
  92. // 更新倒计时显示
  93. var countdownInterval = setInterval(function () {
  94. countdownTime -= 1000;
  95. countdownElement.textContent = Math.ceil(countdownTime / 1000);
  96. if (countdownTime <= 0) {
  97. clearInterval(countdownInterval);
  98. }
  99. }, 1000);
  100. };
  101. </script>
  102. </head>
  103. <body>
  104. <div class="container">
  105. <h1>报名成功</h1>
  106. <p>恭喜您,课程报名成功!</p>
  107. <p>稍后我们的助教老师会与您取得联系!</p>
  108. <p>在开课之前会发给您听课信息!</p>
  109. <p>我们建议您安装弘历听课平台!</p>
  110. <p>所以本页面将在</p>
  111. <h3><span id="countdown" style="font-size: 23px;color: red"></span>
  112. <font color="red"></font> 后自动跳转到弘历听课平台安装界面
  113. </h3>
  114. <!---->
  115. </div>
  116. </body>
  117. </html>