sign-in-cover.html 4.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  1. <!doctype html>
  2. <!--
  3. * Tabler - Premium and Open Source dashboard template with responsive and high quality UI.
  4. * @version 1.0.0-beta20
  5. * @link https://tabler.io
  6. * Copyright 2018-2023 The Tabler Authors
  7. * Copyright 2018-2023 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?1692870487" rel="stylesheet"/>
  18. <link href="./dist/css/tabler-flags.min.css?1692870487" rel="stylesheet"/>
  19. <link href="./dist/css/tabler-payments.min.css?1692870487" rel="stylesheet"/>
  20. <link href="./dist/css/tabler-vendors.min.css?1692870487" rel="stylesheet"/>
  21. <link href="./dist/css/demo.min.css?1692870487" rel="stylesheet"/>
  22. <style>
  23. @import url('https://rsms.me/inter/inter.css');
  24. :root {
  25. --tblr-font-sans-serif: 'Inter Var', -apple-system, BlinkMacSystemFont, San Francisco, Segoe UI, Roboto, Helvetica Neue, sans-serif;
  26. }
  27. body {
  28. font-feature-settings: "cv03", "cv04", "cv11";
  29. }
  30. </style>
  31. </head>
  32. <body class=" d-flex flex-column bg-white">
  33. <script src="./dist/js/demo-theme.min.js?1692870487"></script>
  34. <div class="row g-0 flex-fill">
  35. <div class="col-12 col-lg-6 col-xl-4 border-top-wide border-primary d-flex flex-column justify-content-center">
  36. <div class="container container-tight my-5 px-lg-5">
  37. <div class="text-center mb-4">
  38. <a href="." class="navbar-brand navbar-brand-autodark"><img src="./static/logo.svg" height="36" alt=""></a>
  39. </div>
  40. <h2 class="h3 text-center mb-3">
  41. Login to your account
  42. </h2>
  43. <form action="./" method="get" autocomplete="off" novalidate>
  44. <div class="mb-3">
  45. <label class="form-label">Email address</label>
  46. <input type="email" class="form-control" placeholder="your@email.com" autocomplete="off">
  47. </div>
  48. <div class="mb-2">
  49. <label class="form-label">
  50. Password
  51. <span class="form-label-description">
  52. <a href="./forgot-password.html">I forgot password</a>
  53. </span>
  54. </label>
  55. <div class="input-group input-group-flat">
  56. <input type="password" class="form-control" placeholder="Your password" autocomplete="off">
  57. <span class="input-group-text">
  58. <a href="#" class="link-secondary" title="Show password" data-bs-toggle="tooltip"><!-- Download SVG icon from http://tabler-icons.io/i/eye -->
  59. <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"/><path d="M10 12a2 2 0 1 0 4 0a2 2 0 0 0 -4 0" /><path d="M21 12c-2.4 4 -5.4 6 -9 6c-3.6 0 -6.6 -2 -9 -6c2.4 -4 5.4 -6 9 -6c3.6 0 6.6 2 9 6" /></svg>
  60. </a>
  61. </span>
  62. </div>
  63. </div>
  64. <div class="mb-2">
  65. <label class="form-check">
  66. <input type="checkbox" class="form-check-input"/>
  67. <span class="form-check-label">Remember me on this device</span>
  68. </label>
  69. </div>
  70. <div class="form-footer">
  71. <button type="submit" class="btn btn-primary w-100">Sign in</button>
  72. </div>
  73. </form>
  74. <div class="text-center text-secondary mt-3">
  75. Don't have account yet? <a href="./sign-up.html" tabindex="-1">Sign up</a>
  76. </div>
  77. </div>
  78. </div>
  79. <div class="col-12 col-lg-6 col-xl-8 d-none d-lg-block">
  80. <!-- Photo -->
  81. <div class="bg-cover h-100 min-vh-100" style="background-image: url(./static/photos/finances-us-dollars-and-bitcoins-currency-money-2.jpg)"></div>
  82. </div>
  83. </div>
  84. <!-- Libs JS -->
  85. <!-- Tabler Core -->
  86. <script src="./dist/js/tabler.min.js?1692870487" defer></script>
  87. <script src="./dist/js/demo.min.js?1692870487" defer></script>
  88. </body>
  89. </html>