ui improvements

This commit is contained in:
Daniel
2023-03-25 17:47:34 +03:30
parent 2e3ec53d2a
commit 3a5ae28f86
17 changed files with 117 additions and 55 deletions
+3 -3
View File
@@ -42,17 +42,17 @@ export default function () {
placeholder="Email"
value={form.email}
onChange={(e) => setForm({ ...form, email: e.target.value })}
className="border border-gray-700 rounded block m-2 mx-auto p-2"
className="border border-gray-700 rounded-md block m-2 mx-auto p-2"
/>
<input
type="text"
placeholder="Password"
value={form.password}
onChange={(e) => setForm({ ...form, password: e.target.value })}
className="border border-gray-700 rounded block m-2 mx-auto p-2"
className="border border-gray-700 rounded-md block m-2 mx-auto p-2"
/>
<div
className="mx-auto bg-black w-min p-3 m-5 text-white rounded cursor-pointer"
className="mx-auto bg-black w-min p-3 m-5 text-white rounded-md cursor-pointer"
onClick={loginUser}
>
Login