cover.component.html 2.25 KB
Newer Older
Ooh-Ao committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63
<!-- ========== MAIN CONTENT ========== -->
<div class="flex justify-center min-h-screen align-middle">
  <main id="content" class="w-full max-w-md mx-auto my-auto p-6">
    <a routerLink="/dashboard/sales" class="header-logo">
      <img
        src="./assets/img/brand-logos/desktop-light.png"
        alt="logo"
        class="mx-auto block"
      />
    </a>
    <div class="mt-7 bg-white rounded-sm shadow-sm dark:bg-bgdark">
      <div class="p-4 sm:p-7">
        <div class="text-center">
          <h1 class="block text-2xl font-bold text-gray-800 dark:text-white">
            Forgot password?
          </h1>
          <p class="mt-3 text-sm text-gray-600 dark:text-white/70">
            Remember your password?
            <a
              class="text-primary decoration-2 hover:underline font-medium"
              routerLink="/signin/basic"
            >
              Sign in here
            </a>
          </p>
        </div>

        <div class="mt-5">
          <!-- Form -->
          <form>
            <div class="grid gap-y-4">
              <!-- Form Group -->
              <div>
                <label for="email" class="block text-sm mb-2 dark:text-white"
                  >Email address</label
                >
                <div class="relative">
                  <input
                    type="email"
                    id="email"
                    name="email"
                    class="py-2 px-3 block w-full border-gray-200 rounded-sm text-sm focus:border-primary focus:ring-primary dark:bg-bgdark dark:border-white/10 dark:text-white/70"
                    required
                  />
                </div>
              </div>
              <!-- End Form Group -->

              <button
                type="submit"
                class="py-2 px-3 inline-flex justify-center items-center gap-2 rounded-sm border border-transparent font-semibold bg-primary text-white hover:bg-primary focus:outline-none focus:ring-0 focus:ring-primary focus:ring-offset-0 transition-all text-sm dark:focus:ring-offset-white/10"
              >
                Send Reset Link
              </button>
            </div>
          </form>
          <!-- End Form -->
        </div>
      </div>
    </div>
  </main>
</div>
<!-- ========== END MAIN CONTENT ========== -->