sign-in-cover.html 4.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  1. <!doctype html>
  2. <!--
  3. * Tabler - Premium and Open Source dashboard template with responsive and high quality UI.
  4. * @version 1.0.0-beta14
  5. * @link https://tabler.io
  6. * Copyright 2018-2022 The Tabler Authors
  7. * Copyright 2018-2022 codecalm.net Paweł Kuna
  8. * Licensed under MIT (https://github.com/tabler/tabler/blob/master/LICENSE)
  9. -->
  10. <html lang="en">
  11. <head>
  12. <meta charset="utf-8"/>
  13. <meta name="viewport" content="width=device-width, initial-scale=1, viewport-fit=cover"/>
  14. <meta http-equiv="X-UA-Compatible" content="ie=edge"/>
  15. <title>Sign in with cover - Tabler - Premium and Open Source dashboard template with responsive and high quality UI.</title>
  16. <!-- CSS files -->
  17. <link href="./dist/css/tabler.min.css?1666304673" rel="stylesheet"/>
  18. <link href="./dist/css/tabler-flags.min.css?1666304673" rel="stylesheet"/>
  19. <link href="./dist/css/tabler-payments.min.css?1666304673" rel="stylesheet"/>
  20. <link href="./dist/css/tabler-vendors.min.css?1666304673" rel="stylesheet"/>
  21. <link href="./dist/css/demo.min.css?1666304673" rel="stylesheet"/>
  22. <style>
  23. @import url('https://rsms.me/inter/inter.css');
  24. :root {
  25. --tblr-font-sans-serif: Inter, -apple-system, BlinkMacSystemFont, San Francisco, Segoe UI, Roboto, Helvetica Neue, sans-serif;
  26. }
  27. </style>
  28. </head>
  29. <body class=" d-flex flex-column bg-white">
  30. <script src="./dist/js/demo-theme.min.js?1666304673"></script>
  31. <div class="row g-0 flex-fill">
  32. <div class="col-12 col-lg-6 col-xl-4 border-top-wide border-primary d-flex flex-column justify-content-center">
  33. <div class="container container-tight my-5 px-lg-5">
  34. <div class="text-center mb-4">
  35. <a href="." class="navbar-brand navbar-brand-autodark"><img src="./static/logo.svg" height="36" alt=""></a>
  36. </div>
  37. <h2 class="h3 text-center mb-3">
  38. Login to your account
  39. </h2>
  40. <form action="./" method="get" autocomplete="off" novalidate>
  41. <div class="mb-3">
  42. <label class="form-label">Email address</label>
  43. <input type="email" class="form-control" placeholder="your@email.com" autocomplete="off">
  44. </div>
  45. <div class="mb-2">
  46. <label class="form-label">
  47. Password
  48. <span class="form-label-description">
  49. <a href="./forgot-password.html">I forgot password</a>
  50. </span>
  51. </label>
  52. <div class="input-group input-group-flat">
  53. <input type="password" class="form-control" placeholder="Your password" autocomplete="off">
  54. <span class="input-group-text">
  55. <a href="#" class="link-secondary" title="Show password" data-bs-toggle="tooltip"><!-- Download SVG icon from http://tabler-icons.io/i/eye -->
  56. <svg xmlns="http://www.w3.org/2000/svg" class="icon" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><path stroke="none" d="M0 0h24v24H0z" fill="none"/><circle cx="12" cy="12" r="2" /><path d="M22 12c-2.667 4.667 -6 7 -10 7s-7.333 -2.333 -10 -7c2.667 -4.667 6 -7 10 -7s7.333 2.333 10 7" /></svg>
  57. </a>
  58. </span>
  59. </div>
  60. </div>
  61. <div class="mb-2">
  62. <label class="form-check">
  63. <input type="checkbox" class="form-check-input"/>
  64. <span class="form-check-label">Remember me on this device</span>
  65. </label>
  66. </div>
  67. <div class="form-footer">
  68. <button type="submit" class="btn btn-primary w-100">Sign in</button>
  69. </div>
  70. </form>
  71. <div class="text-center text-muted mt-3">
  72. Don't have account yet? <a href="./sign-up.html" tabindex="-1">Sign up</a>
  73. </div>
  74. </div>
  75. </div>
  76. <div class="col-12 col-lg-6 col-xl-8 d-none d-lg-block">
  77. <div class="bg-cover h-100 min-vh-100" style="background-image: url(./static/photos/36e273986ed577b8.jpg)"></div>
  78. </div>
  79. </div>
  80. <!-- Libs JS -->
  81. <!-- Tabler Core -->
  82. <script src="./dist/js/tabler.min.js?1666304673" defer></script>
  83. <script src="./dist/js/demo.min.js?1666304673" defer></script>
  84. </body>
  85. </html>