code formatting
This commit is contained in:
parent
5b44bbcf59
commit
93e4897c0b
|
@ -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>
|
||||
|
|
Ŝarĝante…
Reference in New Issue