Compare commits

..

1 Commits

Author SHA1 Message Date
ChineseChikki 2c4fb4df08 create-account-line updated 2023-01-26 14:47:19 +01:00
2 changed files with 7 additions and 6 deletions
+3 -2
View File
@@ -122,7 +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 ${loginLoading ? "active" : "" className={`btn-login rounded-[50px] mb-6 text-xl text-white font-bold flex justify-center bg-purple items-center ${
loginLoading ? "active" : ""
}`} }`}
> >
{loginLoading ? ( {loginLoading ? (
@@ -132,7 +133,7 @@ export default function Login() {
)} )}
</button> </button>
</div> </div>
{loginError && <p class="text-center text-red-700 pb-4">Invalid username or password</p>} {loginError && <p class="text-center text-red-600 pb-4">Invalid Credential</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"
+1 -1
View File
@@ -37,7 +37,7 @@ export default function SignUp() {
<h1 className="sm:text-5xl text-4xl font-bold text-dark-gray dark:text-white leading-2"> <h1 className="sm:text-5xl text-4xl font-bold text-dark-gray dark:text-white leading-2">
Create Account Create Account
</h1> </h1>
<div className="shape sm:w-[377px] w-[280px] -mt-2.5 ml-5"> <div className="shape sm:w-[377px] w-[280px] mb-[10px] ml-5">
<img src={titleShape} alt="shape" /> <img src={titleShape} alt="shape" />
</div> </div>
</div> </div>