1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889 |
- <!doctype html>
- <!--
- * Tabler - Premium and Open Source dashboard template with responsive and high quality UI.
- * @version 1.0.0-beta18
- * @link https://tabler.io
- * Copyright 2018-2023 The Tabler Authors
- * Copyright 2018-2023 codecalm.net Paweł Kuna
- * Licensed under MIT (https://github.com/tabler/tabler/blob/master/LICENSE)
- -->
- <html lang="en">
- <head>
- <meta charset="utf-8"/>
- <meta name="viewport" content="width=device-width, initial-scale=1, viewport-fit=cover"/>
- <meta http-equiv="X-UA-Compatible" content="ie=edge"/>
- <title>Sign in with cover - Tabler - Premium and Open Source dashboard template with responsive and high quality UI.</title>
- <!-- CSS files -->
- <link href="./dist/css/tabler.min.css?1684072869" rel="stylesheet"/>
- <link href="./dist/css/tabler-flags.min.css?1684072869" rel="stylesheet"/>
- <link href="./dist/css/tabler-payments.min.css?1684072869" rel="stylesheet"/>
- <link href="./dist/css/tabler-vendors.min.css?1684072869" rel="stylesheet"/>
- <link href="./dist/css/demo.min.css?1684072869" rel="stylesheet"/>
- <style>
- @import url('https://rsms.me/inter/inter.css');
- :root {
- --tblr-font-sans-serif: 'Inter Var', -apple-system, BlinkMacSystemFont, San Francisco, Segoe UI, Roboto, Helvetica Neue, sans-serif;
- }
- body {
- font-feature-settings: "cv03", "cv04", "cv11";
- }
- </style>
- </head>
- <body class=" d-flex flex-column bg-white">
- <script src="./dist/js/demo-theme.min.js?1684072869"></script>
- <div class="row g-0 flex-fill">
- <div class="col-12 col-lg-6 col-xl-4 border-top-wide border-primary d-flex flex-column justify-content-center">
- <div class="container container-tight my-5 px-lg-5">
- <div class="text-center mb-4">
- <a href="." class="navbar-brand navbar-brand-autodark"><img src="./static/logo.svg" height="36" alt=""></a>
- </div>
- <h2 class="h3 text-center mb-3">
- Login to your account
- </h2>
- <form action="./" method="get" autocomplete="off" novalidate>
- <div class="mb-3">
- <label class="form-label">Email address</label>
- <input type="email" class="form-control" placeholder="your@email.com" autocomplete="off">
- </div>
- <div class="mb-2">
- <label class="form-label">
- Password
- <span class="form-label-description">
- <a href="./forgot-password.html">I forgot password</a>
- </span>
- </label>
- <div class="input-group input-group-flat">
- <input type="password" class="form-control" placeholder="Your password" autocomplete="off">
- <span class="input-group-text">
- <a href="#" class="link-secondary" title="Show password" data-bs-toggle="tooltip"><!-- Download SVG icon from http://tabler-icons.io/i/eye -->
- <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>
- </a>
- </span>
- </div>
- </div>
- <div class="mb-2">
- <label class="form-check">
- <input type="checkbox" class="form-check-input"/>
- <span class="form-check-label">Remember me on this device</span>
- </label>
- </div>
- <div class="form-footer">
- <button type="submit" class="btn btn-primary w-100">Sign in</button>
- </div>
- </form>
- <div class="text-center text-muted mt-3">
- Don't have account yet? <a href="./sign-up.html" tabindex="-1">Sign up</a>
- </div>
- </div>
- </div>
- <div class="col-12 col-lg-6 col-xl-8 d-none d-lg-block">
- <!-- Photo -->
- <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>
- </div>
- </div>
- <!-- Libs JS -->
- <!-- Tabler Core -->
- <script src="./dist/js/tabler.min.js?1684072869" defer></script>
- <script src="./dist/js/demo.min.js?1684072869" defer></script>
- </body>
- </html>
|