123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 |
- <!doctype html>
- <!--
- * Tabler - Premium and Open Source dashboard template with responsive and high quality UI.
- * @version 1.0.0-beta17
- * @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>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?1674944402" rel="stylesheet"/>
- <link href="./dist/css/tabler-flags.min.css?1674944402" rel="stylesheet"/>
- <link href="./dist/css/tabler-payments.min.css?1674944402" rel="stylesheet"/>
- <link href="./dist/css/tabler-vendors.min.css?1674944402" rel="stylesheet"/>
- <link href="./dist/css/demo.min.css?1674944402" 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">
- <script src="./dist/js/demo-theme.min.js?1674944402"></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">
- <h2 class="card-title text-center mb-4">Forgot password</h2>
- <p class="text-muted mb-4">Enter your email address and your password will be reset and emailed to you.</p>
- <div class="mb-3">
- <label class="form-label">Email address</label>
- <input type="email" class="form-control" placeholder="Enter email">
- </div>
- <div class="form-footer">
- <a href="#" class="btn btn-primary w-100">
- <!-- Download SVG icon from http://tabler-icons.io/i/mail -->
- <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="M3 5m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z" /><path d="M3 7l9 6l9 -6" /></svg>
- Send me new password
- </a>
- </div>
- </div>
- </form>
- <div class="text-center text-muted mt-3">
- Forget it, <a href="./sign-in.html">send me back</a> to the sign in screen.
- </div>
- </div>
- </div>
- <!-- Libs JS -->
- <!-- Tabler Core -->
- <script src="./dist/js/tabler.min.js?1674944402" defer></script>
- <script src="./dist/js/demo.min.js?1674944402" defer></script>
- </body>
- </html>
|