chore: update copy of register and login

This commit is contained in:
me
2026-05-08 21:00:18 +05:30
parent c6545a11b1
commit a7cced71ee
3 changed files with 307 additions and 297 deletions
+2 -3
View File
@@ -23,7 +23,7 @@ export default function FormField({
<div className="form-control">
<label
htmlFor={registration.name}
className="field-label font-display text-base-content/90 font-medium"
className="field-label font-display text-neutral-content/80 font-medium"
>
{label}
</label>
@@ -33,8 +33,7 @@ export default function FormField({
data-testid={testId}
type={type}
placeholder={placeholder}
className={`input input-bordered focus:input-primary ${
error ? "input-error" : ""
className={`input input-bordered focus:input-primary ${error ? "input-error" : ""
}`}
onFocus={handleFocus}
/>
+7 -8
View File
@@ -120,28 +120,27 @@ export default function Login() {
type="submit"
name="login"
disabled={isLoading}
aria-label="Sign In"
data-testid="login-submit-btn"
className="btn btn-primary w-full shadow-lg"
>
{isLoading ? (
<span className="loading loading-spinner loading-sm" />
) : (
"Sign In"
"Continue"
)}
</button>
</div>
<div className="text-center text-sm font-medium text-base-content/70">
Don't have an account?{" "}
<div className="divider text-neutral my-0">or</div>
<div className="text-center text-sm font-medium text-neutral">
New to <Logo type="inline" />?{" "}
<button
type="button"
name="register"
onClick={() => navigate(ROUTES.ONBOARD)}
className="link link-primary no-underline hover:underline font-bold"
className="link link-primary"
>
Register
</button>
Start here
</button>.
</div>
</form>
</div>
+13 -1
View File
@@ -160,10 +160,22 @@ export default function Register() {
{isLoading ? (
<span className="loading loading-spinner loading-sm" />
) : (
"Register"
"Begin"
)}
</button>
</div>
<div className="divider text-neutral my-0">or</div>
<div className="text-center text-sm font-medium text-neutral">
Been here before?{" "}
<button
type="button"
name="register"
onClick={() => navigate(ROUTES.LOGIN)}
className="link link-primary"
>
Continue where you left off
</button>.
</div>
</form>
</div>
</div>