forgot-password.html 2.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. <!doctype html>
  2. <!--
  3. * Tabler - Premium and Open Source dashboard template with responsive and high quality UI.
  4. * @version 1.0.0-beta4
  5. * @link https://tabler.io
  6. * Copyright 2018-2021 The Tabler Authors
  7. * Copyright 2018-2021 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" rel="stylesheet"/>
  18. <link href="./dist/css/tabler-flags.min.css" rel="stylesheet"/>
  19. <link href="./dist/css/tabler-payments.min.css" rel="stylesheet"/>
  20. <link href="./dist/css/tabler-vendors.min.css" rel="stylesheet"/>
  21. <link href="./dist/css/demo.min.css" rel="stylesheet"/>
  22. </head>
  23. <body class="antialiased border-top-wide border-primary d-flex flex-column">
  24. <div class="page page-center">
  25. <div class="container-tight py-4">
  26. <div class="text-center mb-4">
  27. <a href="."><img src="./static/logo.svg" height="36" alt=""></a>
  28. </div>
  29. <form class="card card-md" action="." method="get">
  30. <div class="card-body">
  31. <h2 class="card-title text-center mb-4">Forgot password</h2>
  32. <p class="text-muted mb-4">Enter your email address and your password will be reset and emailed to you.</p>
  33. <div class="mb-3">
  34. <label class="form-label">Email address</label>
  35. <input type="email" class="form-control" placeholder="Enter email">
  36. </div>
  37. <div class="form-footer">
  38. <a href="#" class="btn btn-primary w-100">
  39. <!-- Download SVG icon from http://tabler-icons.io/i/mail -->
  40. <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>
  41. Send me new password
  42. </a>
  43. </div>
  44. </div>
  45. </form>
  46. <div class="text-center text-muted mt-3">
  47. Forget it, <a href="./sign-in.html">send me back</a> to the sign in screen.
  48. </div>
  49. </div>
  50. </div>
  51. <!-- Libs JS -->
  52. <!-- Tabler Core -->
  53. <script src="./dist/js/tabler.min.js"></script>
  54. </body>
  55. </html>