forgot-password.html 4.1 KB
Newer Older
C
codecalm 已提交
1 2 3
<!doctype html>
<!--
* Tabler - Premium and Open Source dashboard template with responsive and high quality UI.
C
codecalm 已提交
4
* @version 1.0.0-alpha.4
C
codecalm 已提交
5 6 7 8 9 10 11 12 13 14
* @link https://github.com/tabler/tabler
* Copyright 2018-2019 The Tabler Authors
* Copyright 2018-2019 codecalm.net Paweł Kuna
* Licensed under MIT (https://tabler.io/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"/>
C
codecalm 已提交
15 16
    <title>Forgot password - Tabler - Premium and Open Source dashboard template with responsive and high quality UI.</title>
    <link rel="preconnect" href="https://fonts.gstatic.com/" crossorigin>
C
codecalm 已提交
17 18 19 20 21 22 23 24 25 26 27
    <meta name="msapplication-TileColor" content="#206bc4"/>
    <meta name="theme-color" content="#206bc4"/>
    <meta name="apple-mobile-web-app-status-bar-style" content="black-translucent"/>
    <meta name="apple-mobile-web-app-capable" content="yes"/>
    <meta name="mobile-web-app-capable" content="yes"/>
    <meta name="HandheldFriendly" content="True"/>
    <meta name="MobileOptimized" content="320"/>
    <meta name="robots" content="noindex,nofollow,noarchive"/>
    <link rel="icon" href="./favicon.ico" type="image/x-icon"/>
    <link rel="shortcut icon" href="./favicon.ico" type="image/x-icon"/>
    <!-- Libs CSS -->
C
codecalm 已提交
28 29 30 31 32 33 34 35 36
    <link href="./dist/libs/jqvmap/dist/jqvmap.min.css?1582373134" rel="stylesheet"/>
    <link href="./dist/libs/selectize/dist/css/selectize.css?1582373134" rel="stylesheet"/>
    <link href="./dist/libs/fullcalendar/core/main.min.css?1582373134" rel="stylesheet"/>
    <link href="./dist/libs/fullcalendar/daygrid/main.min.css?1582373134" rel="stylesheet"/>
    <link href="./dist/libs/fullcalendar/timegrid/main.min.css?1582373134" rel="stylesheet"/>
    <link href="./dist/libs/fullcalendar/list/main.min.css?1582373134" rel="stylesheet"/>
    <link href="./dist/libs/flatpickr/dist/flatpickr.min.css?1582373134" rel="stylesheet"/>
    <link href="./dist/libs/nouislider/distribute/nouislider.min.css?1582373134" rel="stylesheet"/>
    <link href="https://api.mapbox.com/mapbox-gl-js/v1.8.0/mapbox-gl.css" rel="stylesheet"/>
C
codecalm 已提交
37
    <!-- Tabler Core -->
C
codecalm 已提交
38
    <link href="./dist/css/tabler.min.css?1582373134" rel="stylesheet"/>
C
codecalm 已提交
39
    <!-- Tabler Plugins -->
C
codecalm 已提交
40 41 42 43
    <link href="./dist/css/tabler-flags.min.css?1582373134" rel="stylesheet"/>
    <link href="./dist/css/tabler-payments.min.css?1582373134" rel="stylesheet"/>
    <link href="./dist/css/tabler-buttons.min.css?1582373134" rel="stylesheet"/>
    <link href="./dist/css/demo.min.css?1582373134" rel="stylesheet"/>
C
codecalm 已提交
44 45 46 47 48
    <style>
      body {
      	display: none;
      }
    </style>
C
codecalm 已提交
49
  </head>
C
codecalm 已提交
50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65
  <body class="antialiased border-top-wide border-primary d-flex flex-column">
    <div class="flex-fill d-flex flex-column justify-content-center">
      <div class="container-tight py-6">
        <div class="text-center mb-4">
          <img src="./static/logo.svg" height="36" alt="">
        </div>
        <form class="card card-md" action="." method="get">
          <div class="card-body">
            <h2 class="mb-5 text-center">Forgot password</h2>
            <p class="text-muted">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">
              <button type="submit" class="btn btn-primary btn-block">Send me new password</button>
C
codecalm 已提交
66 67
            </div>
          </div>
C
codecalm 已提交
68 69 70
        </form>
        <div class="text-center text-muted">
          Forget it, <a href="./sign-in.html">send me back</a> to the sign in screen.
C
codecalm 已提交
71 72 73 74
        </div>
      </div>
    </div>
    <!-- Libs JS -->
C
codecalm 已提交
75 76
    <script src="./dist/libs/bootstrap/dist/js/bootstrap.bundle.min.js?1582373134"></script>
    <script src="./dist/libs/jquery/dist/jquery.slim.min.js?1582373134"></script>
C
codecalm 已提交
77
    <!-- Tabler Core -->
C
codecalm 已提交
78
    <script src="./dist/js/tabler.min.js?1582373134"></script>
C
codecalm 已提交
79 80 81
    <script>
      document.body.style.display = "block"
    </script>
C
codecalm 已提交
82 83
  </body>
</html>