Advertisement
Guest User

Untitled

a guest
Mar 29th, 2020
997
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 7.85 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <style>
  5. .spinner {
  6. margin: 0;
  7. width: 70px;
  8. height: 18px;
  9. margin: -35px 0 0 -9px;
  10. position: absolute;
  11. top: 50%;
  12. left: 50%;
  13. text-align: center
  14. }
  15.  
  16. .spinner > div {
  17. width: 18px;
  18. height: 18px;
  19. background-color: #333;
  20. border-radius: 100%;
  21. display: inline-block;
  22. -webkit-animation: bouncedelay 1.4s infinite ease-in-out;
  23. animation: bouncedelay 1.4s infinite ease-in-out;
  24. -webkit-animation-fill-mode: both;
  25. animation-fill-mode: both
  26. }
  27.  
  28. .spinner .bounce1 {
  29. -webkit-animation-delay: -.32s;
  30. animation-delay: -.32s
  31. }
  32.  
  33. .spinner .bounce2 {
  34. -webkit-animation-delay: -.16s;
  35. animation-delay: -.16s
  36. }
  37.  
  38. @-webkit-keyframes bouncedelay {
  39. 0%, 80%, 100% {
  40. -webkit-transform: scale(0.0)
  41. }
  42. 40% {
  43. -webkit-transform: scale(1.0)
  44. }
  45. }
  46. @keyframes bouncedelay {
  47. 0%, 80%, 100% {
  48. transform: scale(0.0);
  49. -webkit-transform: scale(0.0)
  50. }
  51. 40% {
  52. transform: scale(1.0);
  53. -webkit-transform: scale(1.0)
  54. }
  55. }
  56. @media only screen and (max-width: 600px) {
  57. .mx-30 {
  58. margin-left: 8px!important;
  59. margin-right: 8px!important;
  60. }
  61. }
  62.  
  63. </style>
  64.  
  65.  
  66. <meta charset="UTF-8">
  67. <!--[if IE]><meta http-equiv='X-UA-Compatible' content='IE=edge,chrome=1'><![endif]-->
  68. <title> Login - Jorbox </title>
  69. <meta name="description" content="">
  70. <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
  71.  
  72. <!-- Favicons -->
  73. {% load static %}
  74.  
  75. <link rel="stylesheet" type="text/css" href="{% static 'baseTemplate/assets/finalLoginPageCSS/allCss.css' %}">
  76.  
  77. <!-- HELPERS -->
  78.  
  79. <!-- ELEMENTS -->
  80.  
  81. <!-- ICONS -->
  82.  
  83. <!-- Admin theme -->
  84.  
  85. <!-- Components theme -->
  86.  
  87. <!-- JS Core -->
  88.  
  89. <script type="text/javascript" src="{% static 'baseTemplate/assets/js-core/jquery-core.min.js' %}"></script>
  90.  
  91. <script type="text/javascript">
  92. $(window).load(function () {
  93. setTimeout(function () {
  94. $('#loading').fadeOut(400, "linear");
  95. }, 300);
  96. });
  97. </script>
  98.  
  99. <!-- JS Ends -->
  100.  
  101. <style type="text/css">
  102.  
  103. html, body {
  104. height: 100%;
  105. background: #F0EFF0;
  106. }
  107.  
  108. </style>
  109.  
  110. </head>
  111. <body>
  112. <div id="loading">
  113. <div class="spinner">
  114. <div class="bounce1"></div>
  115. <div class="bounce2"></div>
  116. <div class="bounce3"></div>
  117. </div>
  118. </div>
  119.  
  120. <div ng-app="loginSystem" ng-controller="loginSystem" class="col-md-12 col-sm-12" style="background: #F0EFF0;">
  121. <br/>
  122. <div>
  123. <form id="loginForm" action="/" class="col-md-4 col-md-offset-4">
  124. <h1 class="text-transform-upr text-center panel-body text-bold"
  125. style="padding-bottom: 0px; color: #33CCCC;">
  126. <img class="center-block text-center my-20" src="{% static 'images/logo.png' %}" style="width: 240px;margin-bottom: 10px;">
  127. </h1>
  128. <h4 class="text-muted text-center mb-10">Web Hosting Control Panel</h4>
  129. <div class="">
  130. <div class="mx-30">
  131. <div class="content-box-wrapper panel-body my-10 mx-30">
  132. <div class="form-group">
  133. <div class="input-group" style=" border: 2px solid #d0d0d0; border-radius: 6px; ">
  134. <span class="input-group-addon bg-blue">
  135. <i class="glyph-icon icon-envelope-o"></i>
  136. </span>
  137. <input ng-model="username" type="text" class="form-control" name="username"
  138. placeholder="Enter your username." required style="height: 36px;">
  139.  
  140. </div>
  141. </div>
  142. <div class="form-group" style=" border: 2px solid #d0d0d0; border-radius: 6px; ">
  143. <div class="input-group">
  144.  
  145. <span class="input-group-addon bg-blue">
  146. <i class="glyph-icon icon-unlock-alt"></i>
  147. </span>
  148. <input ng-keypress="initiateLogin($event)" ng-model="password" type="password"
  149. class="form-control" id="password" placeholder="Enter your password." required
  150. name="password">
  151.  
  152. </div>
  153. <img id="verifyingLogin" class="center-block"
  154. src="{% static 'images/loading.gif' %}">
  155. </div>
  156.  
  157.  
  158. <div class="form-group" style=" border: 2px solid #d0d0d0; border-radius: 6px; ">
  159. <div class="input-group">
  160. <select ng-model="languageSelection" ng-init="languageSelection='english'"
  161. class="form-control">
  162. <option value="english">English</option>
  163. <option>Chinese</option>
  164. <option>Italian</option>
  165. <option>French</option>
  166. <option>Bulgarian</option>
  167. <option>Portuguese</option>
  168. <option>Japanese</option>
  169. <option>Bosnian</option>
  170. <option>Greek</option>
  171. <option>Russian</option>
  172. <option>Turkish</option>
  173. <option>Spanish</option>
  174. <option>Polish</option>
  175. <option>Vietnamese</option>
  176. <option>German</option>
  177. </select>
  178. </div>
  179. </div>
  180.  
  181.  
  182. <button type="button" ng-click="verifyLoginCredentials()"
  183. class="btn btn-success btn-block" style=" background-color: #179bd7; width: 100%; font-size: 13px; font-family: &quot;Open Sans&quot;,sans-serif; font-weight: 600; padding-top: 0px; padding-bottom: 7px; text-align: center; text-decoration: none; border: 1px solid #095779; -khtml-border-radius: 4px; border-radius: 4px; color: #fff; cursor: pointer; ">Log In
  184. </button>
  185. </div>
  186. </div>
  187. </div>
  188. <div class="copyright" style="
  189. display: block;
  190. text-align: center;
  191. ">
  192. <img class="center-block text-center" src="{% static 'images/img.png' %}" style="
  193. width: 20px;
  194. margin-bottom: 9px;
  195. ">
  196. Copyright©&nbsp;2020 Jorbox, Inc
  197. <br><a href="https://www.jorbox.com/privacy-policy/" target="_blank">Privacy Policy</a></div>
  198. </form>
  199. <div id="loginFailed" class="alert alert-danger">
  200. <p>Could Not Login, Error message: {$ errorMessage $}</p>
  201. </div>
  202. </div>
  203. </div>
  204. </div>
  205. <script src="https://code.angularjs.org/1.6.5/angular.min.js"></script>
  206. <script src="https://code.angularjs.org/1.6.5/angular-route.min.js"></script>
  207. <script src="{% static 'loginSystem/login-systen.js' %}"></script>
  208.  
  209. </body>
  210. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement