diff options
Diffstat (limited to 'src/pages/login.js')
| -rw-r--r-- | src/pages/login.js | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/src/pages/login.js b/src/pages/login.js index cb299afa..b67564d2 100644 --- a/src/pages/login.js +++ b/src/pages/login.js @@ -57,22 +57,24 @@ export default function Login() { <Link href="/" className="mt-16"> <Image src={Logo} alt="Logo Indoteknik" width={165} height={42} /> </Link> - <h1 className="text-2xl text-gray-900 mt-4">Mulai Belanja Sekarang</h1> - <h2 className="text-gray-800 mt-2 mb-4">Masuk ke akun kamu untuk belanja</h2> + <h1 className="text-2xl mt-4 text-center">Mulai Belanja Sekarang</h1> + <h2 className="text-gray_r-11 font-medium mt-2 mb-4">Masuk ke akun kamu untuk belanja</h2> {alert ? ( <Alert className="text-center" type={alert.type}>{alert.component}</Alert> ) : ''} <form onSubmit={login} className="w-full"> + <label className="form-label mt-4 mb-2">Nama Lengkap</label> <input type="text" - className="form-input bg-gray-100 mt-4" + className="form-input bg-gray_r-2" placeholder="johndoe@gmail.com" value={email} onChange={(e) => setEmail(e.target.value)} /> + <label className="form-label mt-4 mb-2">Kata Sandi</label> <input type="password" - className="form-input bg-gray-100 mt-4" + className="form-input bg-gray_r-2" placeholder="••••••••" value={password} onChange={(e) => setPassword(e.target.value)} |
