cover2.component.html 7.7 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 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189
<div class="auth">
<div class="grid grid-cols-12 gap-6 w-full h-full">
  <div class="lg:col-span-6 col-span-12 hidden lg:block relative">
    <div class="cover relative w-full h-full z-[1] p-10">
      <a routerLink="/dashboard/sales" class="header- logo">
        <img
          src="./assets/img/brand-logos/desktop-light.png"
          alt="logo"
          class="ltr:ml-auto rtl:mr-auto block"
        />
      </a>
      <div
        class="authentication-page justify-center w-full max-w-7xl mx-auto p-0"
      >
        <img
          src="./assets/img/authentication/2.png"
          alt="logo"
          class="mx-auto h-[500px]"
        />
      </div>
    </div>
  </div>
  <div class="lg:col-span-6 col-span-12">
    <div class="authentication-page w-full">
      <!-- ========== MAIN CONTENT ========== -->
      <main id="content" class="w-full max-w-md mx-auto p-6">
        <a routerLink="/dashboard/sales" class="header-logo lg:hidden">
          <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">
          <div class="p-4 sm:p-7">
            <div class="text-center">
              <h1
                class="block text-2xl font-bold text-gray-800 dark:text-white"
              >
                Sign up
              </h1>
              <p class="mt-3 text-sm text-gray-600 dark:text-white/70">
                Already have an account?
                <a
                  class="text-primary decoration-2 hover:underline font-medium"
                  routerLink="/signin/basic"
                >
                  Sign in here
                </a>
              </p>
            </div>

            <div class="mt-5">
              <button
                type="button"
                class="w-full py-2 px-3 inline-flex justify-center items-center gap-2 rounded-sm border font-medium bg-white text-gray-700 shadow-sm align-middle hover:bg-gray-50 focus:outline-none focus:ring-0 focus:ring-offset-0 focus:ring-offset-white focus:ring-primary transition-all text-sm dark:bg-bgdark dark:hover:bg-black/20 dark:border-white/10 dark:text-white/70 dark:hover:text-white dark:focus:ring-offset-white/10"
              >
                <img
                  src="./assets/img/authentication/social/1.png"
                  class="w-4 h-4"
                  alt="google-img"
                />Sign in with Google
              </button>

              <div
                class="py-3 flex items-center text-xs text-gray-400 uppercase before:flex-[1_1_0%] before:border-t before:border-gray-200 ltr:before:mr-6 rtl:before:ml-6 after:flex-[1_1_0%] after:border-t after:border-gray-200 ltr:after:ml-6 rtl:after:mr-6 dark:text-white/70 dark:before:border-white/10 dark:after:border-white/10"
              >
                Or
              </div>

              <!-- Form -->
              <form>
                <div class="grid gap-y-4">
                  <!-- Form Group -->
                  <div>
                    <label class="block text-sm mb-2 dark:text-white"
                      >Full Name</label
                    >
                    <div class="relative">
                      <input
                        type="text"
                        name="text"
                        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>
                    <label class="block text-sm mb-2 dark:text-white"
                      >Email address</label
                    >
                    <div class="relative">
                      <input
                        type="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 -->

                  <!-- Form Group -->
                  <div>
                    <label
                      for="password"
                      class="block text-sm mb-2 dark:text-white"
                      >Password</label
                    >
                    <div class="relative">
                      <input
                        type="password"
                        id="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>
                    <label
                      for="confirm-password"
                      class="block text-sm mb-2 dark:text-white"
                      >Confirm Password</label
                    >
                    <div class="relative">
                      <input
                        type="password"
                        id="confirm-password"
                        name="confirm-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 -->

                  <!-- 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 pointer-events-none 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"
                        >I accept the
                        <a
                          class="text-primary decoration-2 hover:underline font-medium"
                          routerLink="/page/terms-conditions"
                          >Terms and Conditions</a
                        ></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"
                  >
                    Sign up
                  </button>
                </div>
              </form>
              <!-- End Form -->
            </div>
          </div>
        </div>
      </main>
      <!-- ========== END MAIN CONTENT ========== -->
    </div>
  </div>
</div>
</div>