diff options
| author | Rafi Zadanly <rafizadanly@gmail.com> | 2022-12-30 10:04:21 +0700 |
|---|---|---|
| committer | Rafi Zadanly <rafizadanly@gmail.com> | 2022-12-30 10:04:21 +0700 |
| commit | eca470c9dfd272ef7c2fdd235757f70757feb8dd (patch) | |
| tree | f05eaf67f53637330e8db30a9eaa6437a0d48e87 /src/pages/my/profile.js | |
| parent | 6dd16f01b388facb855437eec9c5cfaf0c62e967 (diff) | |
no message
Diffstat (limited to 'src/pages/my/profile.js')
| -rw-r--r-- | src/pages/my/profile.js | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/src/pages/my/profile.js b/src/pages/my/profile.js index 6e40230d..d4b7fb6d 100644 --- a/src/pages/my/profile.js +++ b/src/pages/my/profile.js @@ -52,7 +52,7 @@ export default function MyProfile() { <label className="form-label mt-4 mb-2">Email</label> <input type="text" - className="form-input bg-gray_r-2" + className="form-input" placeholder="johndoe@gmail.com" name="email" value={auth.email} @@ -63,7 +63,7 @@ export default function MyProfile() { <label className="form-label mt-4 mb-2">Nama Lengkap</label> <input type="text" - className="form-input bg-gray_r-2" + className="form-input" placeholder="John Doe" name="name" value={auth.name} @@ -74,7 +74,7 @@ export default function MyProfile() { <label className="form-label mt-4 mb-2">No Telepon</label> <input type="tel" - className="form-input bg-gray_r-2" + className="form-input" placeholder="08xxxxxxxx" name="phone" value={auth.phone} @@ -85,7 +85,7 @@ export default function MyProfile() { <label className="form-label mt-4 mb-2">No Handphone</label> <input type="tel" - className="form-input bg-gray_r-2" + className="form-input" placeholder="08xxxxxxxx" name="mobile" value={auth.mobile} @@ -96,7 +96,7 @@ export default function MyProfile() { <label className="form-label mt-4 mb-2">Kata Sandi</label> <input type="password" - className="form-input bg-gray_r-2" + className="form-input" placeholder="••••••••" value={password} onChange={(e) => setPassword(e.target.value)} @@ -106,22 +106,22 @@ export default function MyProfile() { ) } { editMode && ( - <div className="flex gap-x-3"> + <div className="flex gap-x-3 mt-6"> <button type="button" - className="btn-light flex-1 float-right mt-4" + className="btn-light flex-1 float-right" onClick={cancelEdit} > Batal </button> - <button type="submit" className="btn-yellow flex-1 float-right mt-4">Simpan</button> + <button type="submit" className="btn-yellow flex-1 float-right">Simpan</button> </div> ) } { !editMode && ( <button type="button" - className="btn-light float-right mt-4 w-full" + className="btn-light float-right mt-6 w-full" onClick={() => setEditMode(true)} > Ubah Profil |
