login.html.template 3.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. <!DOCTYPE html>
  2. <!--
  3. * Licensed to the Apache Software Foundation (ASF) under one or more
  4. * contributor license agreements. See the NOTICE file distributed with
  5. * this work for additional information regarding copyright ownership.
  6. * The ASF licenses this file to You under the Apache License, Version 2.0
  7. * (the "License"); you may not use this file except in compliance with
  8. * the License. You may obtain a copy of the License at
  9. *
  10. * http://www.apache.org/licenses/LICENSE-2.0
  11. *
  12. * Unless required by applicable law or agreed to in writing, software
  13. * distributed under the License is distributed on an "AS IS" BASIS,
  14. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  15. * See the License for the specific language governing permissions and
  16. * limitations under the License.
  17. -->
  18. <!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7"> <![endif]-->
  19. <!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8"> <![endif]-->
  20. <!--[if IE 8]> <html class="no-js lt-ie9"> <![endif]-->
  21. <!--[if lt IE 9]>
  22. <script type="text/javascript">
  23. function Redirect() {
  24. window.location.assign("ieerror.html");
  25. }
  26. Redirect();
  27. </script>
  28. <![endif]-->
  29. <!--[if gt IE 7]>
  30. <script src="js/external_lib/es5-shim.min.js"></script>
  31. <script src="js/external_lib/respond.min.js"></script>
  32. <![endif]-->
  33. <!--[if gt IE 8]><!-->
  34. <html class="no-js">
  35. <!--<![endif]-->
  36. <head>
  37. <meta charset="utf-8" />
  38. <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
  39. <title>Atlas Login</title>
  40. <meta name="description" content="" />
  41. <meta name="viewport" content="width=device-width" />
  42. <link href="js/libs/bootstrap/css/bootstrap.min.css" media="all" rel="stylesheet" type="text/css" id="bootstrap-css" />
  43. <link href="js/libs/font-awesome/css/font-awesome.min.css" rel="stylesheet" />
  44. <link href="css/login.css" media="all" rel="stylesheet" type="text/css" />
  45. <script src="js/libs/jquery/js/jquery.min.js"></script>
  46. <script src="js/libs/jquery-placeholder/js/jquery.placeholder.js"></script>
  47. <script src="js/modules/atlasLogin.js"></script>
  48. </head>
  49. <body class="login-body" style="display: none">
  50. <div class="login-form">
  51. <div class="logo-container text-center">
  52. <img src="img/atlas_logo.svg" />
  53. </div>
  54. <h4>Sign In to your account</h4>
  55. <form action="" method="post" accept-charset="utf-8">
  56. <div class="form-group icon-group user">
  57. <input type="text" name="username" id="username" value="s" class="form-control" placeholder="Username" tabindex="1" required autofocus />
  58. </div>
  59. <div class="form-group icon-group password">
  60. <input type="password" name="password" class="form-control" value="s" placeholder="Password" id="password" tabindex="2" autocomplete="off" required />
  61. <i class="fa fa-eye-slash show-password"></i>
  62. </div>
  63. <span id="errorBox" class="col-md-12 help-inline" style="color:#FF1A40;display:none;text-align:center;padding-bottom: 10px;"><span class="errorMsg"></span></span>
  64. <button class="btn btn-default btn-block btn-login" id="signIn">Log in</button>
  65. </form>
  66. </div>
  67. </body>
  68. <script type="text/javascript">
  69. </script>
  70. </html>