1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- <!doctype html>
- <!--
- * Tabler - Premium and Open Source dashboard template with responsive and high quality UI.
- * @version 1.0.0-beta14
- * @link https://tabler.io
- * Copyright 2018-2022 The Tabler Authors
- * Copyright 2018-2022 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>Forgot password - Tabler - Premium and Open Source dashboard template with responsive and high quality UI.</title>
- <!-- CSS files -->
- <link href="./dist/css/tabler.min.css?1666304673" rel="stylesheet"/>
- <link href="./dist/css/tabler-flags.min.css?1666304673" rel="stylesheet"/>
- <link href="./dist/css/tabler-payments.min.css?1666304673" rel="stylesheet"/>
- <link href="./dist/css/tabler-vendors.min.css?1666304673" rel="stylesheet"/>
- <link href="./dist/css/demo.min.css?1666304673" rel="stylesheet"/>
- <style>
- @import url('https://rsms.me/inter/inter.css');
- :root {
- --tblr-font-sans-serif: Inter, -apple-system, BlinkMacSystemFont, San Francisco, Segoe UI, Roboto, Helvetica Neue, sans-serif;
- }
- </style>
- </head>
- <body class=" border-top-wide border-primary d-flex flex-column">
- <script src="./dist/js/demo-theme.min.js?1666304673"></script>
- <div class="page page-center">
- <div class="container container-tight py-4">
- <div class="text-center mb-4">
- <a href="." class="navbar-brand navbar-brand-autodark"><img src="./static/logo.svg" height="36" alt=""></a>
- </div>
- <form class="card card-md" action="./" method="get" autocomplete="off" novalidate>
- <div class="card-body text-center">
- <div class="mb-4">
- <h2 class="card-title">Account Locked</h2>
- <p class="text-muted">Please enter your password to unlock your account</p>
- </div>
- <div class="mb-4">
- <span class="avatar avatar-xl mb-3" style="background-image: url(./static/avatars/000m.jpg)"></span>
- <h3>Paweł Kuna</h3>
- </div>
- <div class="mb-4">
- <input type="password" class="form-control" placeholder="Password…">
- </div>
- <div>
- <a href="#" class="btn btn-primary w-100">
- <!-- Download SVG icon from http://tabler-icons.io/i/lock-open -->
- <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"/><rect x="5" y="11" width="14" height="10" rx="2" /><circle cx="12" cy="16" r="1" /><path d="M8 11v-5a4 4 0 0 1 8 0" /></svg>
- Unlock
- </a>
- </div>
- </div>
- </form>
- </div>
- </div>
- <!-- Libs JS -->
- <!-- Tabler Core -->
- <script src="./dist/js/tabler.min.js?1666304673" defer></script>
- <script src="./dist/js/demo.min.js?1666304673" defer></script>
- </body>
- </html>
|