forgot-password.html 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  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>Forgot password - 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=" border-top-wide border-primary d-flex flex-column">
  30. <script src="./dist/js/demo-theme.min.js?1666304673"></script>
  31. <div class="page page-center">
  32. <div class="container container-tight py-4">
  33. <div class="text-center mb-4">
  34. <a href="." class="navbar-brand navbar-brand-autodark"><img src="./static/logo.svg" height="36" alt=""></a>
  35. </div>
  36. <form class="card card-md" action="./" method="get" autocomplete="off" novalidate>
  37. <div class="card-body">
  38. <h2 class="card-title text-center mb-4">Forgot password</h2>
  39. <p class="text-muted mb-4">Enter your email address and your password will be reset and emailed to you.</p>
  40. <div class="mb-3">
  41. <label class="form-label">Email address</label>
  42. <input type="email" class="form-control" placeholder="Enter email">
  43. </div>
  44. <div class="form-footer">
  45. <a href="#" class="btn btn-primary w-100">
  46. <!-- Download SVG icon from http://tabler-icons.io/i/mail -->
  47. <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="3" y="5" width="18" height="14" rx="2" /><polyline points="3 7 12 13 21 7" /></svg>
  48. Send me new password
  49. </a>
  50. </div>
  51. </div>
  52. </form>
  53. <div class="text-center text-muted mt-3">
  54. Forget it, <a href="./sign-in.html">send me back</a> to the sign in screen.
  55. </div>
  56. </div>
  57. </div>
  58. <!-- Libs JS -->
  59. <!-- Tabler Core -->
  60. <script src="./dist/js/tabler.min.js?1666304673" defer></script>
  61. <script src="./dist/js/demo.min.js?1666304673" defer></script>
  62. </body>
  63. </html>