Compare commits

...

1 Commits

Author SHA1 Message Date
ChineseChikki 568de8c8ec invalid credential details 2023-01-26 15:17:09 +01:00
+3 -4
View File
@@ -122,9 +122,8 @@ export default function Login() {
<button <button
onClick={doLogin} onClick={doLogin}
type="button" type="button"
className={`btn-login rounded-[50px] mb-6 text-xl text-white font-bold flex justify-center bg-purple items-center ${ className={`btn-login rounded-[50px] mb-6 text-xl text-white font-bold flex justify-center bg-purple items-center ${loginLoading ? "active" : ""
loginLoading ? "active" : "" }`}
}`}
> >
{loginLoading ? ( {loginLoading ? (
<div className="signup btn-loader"></div> <div className="signup btn-loader"></div>
@@ -133,7 +132,7 @@ export default function Login() {
)} )}
</button> </button>
</div> </div>
{loginError && <p class="text-center text-red-600 pb-4">Invalid Credential</p>} {loginError && <p class="text-center text-red-700 pb-4">Invalid username or password</p>}
<a <a
href="#" href="#"
className="w-full border border-light-purple dark:border-[#5356fb29] rounded-[50px] h-[58px] flex justify-center bg-[#FAFAFA] dark:bg-[#11131F] items-center" className="w-full border border-light-purple dark:border-[#5356fb29] rounded-[50px] h-[58px] flex justify-center bg-[#FAFAFA] dark:bg-[#11131F] items-center"