basic.component.html 4.32 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 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120
<!-- ========== MAIN CONTENT ========== -->
<main id="content" class="w-full max-w-md mx-auto p-6">
  <a routerLink="/dashboard/sales" class="header-logo">
    <img
      src="./assets/img/brand-logos/desktop-logo.png"
      alt="logo"
      class="mx-auto block dark:hidden"
    />
    <img
      src="./assets/img/brand-logos/desktop-dark.png"
      alt="logo"
      class="mx-auto hidden dark: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">
          Reset 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>
              <div class="flex justify-between items-center">
                <label class="block text-sm mb-2 dark:text-white"
                  >Password</label
                >
              </div>
              <div class="relative">
                <input
                  type="password"
                  name="password"
                  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 -->
            <!-- Form Group -->
            <div>
              <div class="flex justify-between items-center">
                <label class="block text-sm mb-2 dark:text-white"
                  >New Password</label
                >
              </div>
              <div class="relative">
                <input
                  type="password"
                  name="password1"
                  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 -->

            <!-- Form Group -->
            <div>
              <div class="flex justify-between items-center">
                <label class="block text-sm mb-2 dark:text-white"
                  >Confirm Password</label
                >
              </div>
              <div class="relative">
                <input
                  type="password"
                  name="password2"
                  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 -->

            <!-- Checkbox -->
            <div class="flex items-center">
              <div class="flex">
                <input
                  id="remember-me"
                  name="remember-me"
                  type="checkbox"
                  class="shrink-0 mt-0.5 border-gray-200 rounded text-primary focus:ring-primary dark:bg-bgdark dark:border-white/10 dark:checked:bg-primary dark:checked:border-primary dark:focus:ring-offset-white/10"
                />
              </div>
              <div class="ltr:ml-3 rtl:mr-3">
                <label for="remember-me" class="text-sm dark:text-white"
                  >Remember me</label
                >
              </div>
            </div>
            <!-- End Checkbox -->

            <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"
            >
              Reset password
            </button>
          </div>
        </form>
        <!-- End Form -->
      </div>
    </div>
  </div>
</main>
<!-- ========== END MAIN CONTENT ========== -->