code formatting
This commit is contained in:
parent
5b44bbcf59
commit
93e4897c0b
|
@ -96,7 +96,9 @@ export default function Login() {
|
||||||
placeholder="johnny"
|
placeholder="johnny"
|
||||||
value={form.username}
|
value={form.username}
|
||||||
className="bg-base-100"
|
className="bg-base-100"
|
||||||
onChange={(e) => setForm({ ...form, username: e.target.value })}
|
onChange={(e) =>
|
||||||
|
setForm({ ...form, username: e.target.value })
|
||||||
|
}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
@ -108,11 +110,16 @@ export default function Login() {
|
||||||
placeholder="••••••••••••••"
|
placeholder="••••••••••••••"
|
||||||
value={form.password}
|
value={form.password}
|
||||||
className="bg-base-100"
|
className="bg-base-100"
|
||||||
onChange={(e) => setForm({ ...form, password: e.target.value })}
|
onChange={(e) =>
|
||||||
|
setForm({ ...form, password: e.target.value })
|
||||||
|
}
|
||||||
/>
|
/>
|
||||||
{emailEnabled && (
|
{emailEnabled && (
|
||||||
<div className="w-fit ml-auto mt-1">
|
<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?
|
Forgot Password?
|
||||||
</Link>
|
</Link>
|
||||||
</div>
|
</div>
|
||||||
|
|
Ŝarĝante…
Reference in New Issue