code formatting

This commit is contained in:
daniel31x13 2023-12-07 06:35:08 -05:00
parent 5b44bbcf59
commit 93e4897c0b

View File

@ -96,7 +96,9 @@ export default function Login() {
placeholder="johnny"
value={form.username}
className="bg-base-100"
onChange={(e) => setForm({ ...form, username: e.target.value })}
onChange={(e) =>
setForm({ ...form, username: e.target.value })
}
/>
</div>
@ -108,11 +110,16 @@ export default function Login() {
placeholder="••••••••••••••"
value={form.password}
className="bg-base-100"
onChange={(e) => setForm({ ...form, password: e.target.value })}
onChange={(e) =>
setForm({ ...form, password: e.target.value })
}
/>
{emailEnabled && (
<div className="w-fit ml-auto mt-1">
<Link href={"/forgot"} className="text-neutral font-semibold">
<Link
href={"/forgot"}
className="text-neutral font-semibold"
>
Forgot Password?
</Link>
</div>