diff options
| author | Rafi Zadanly <zadanlyr@gmail.com> | 2023-04-11 09:47:25 +0700 |
|---|---|---|
| committer | Rafi Zadanly <zadanlyr@gmail.com> | 2023-04-11 09:47:25 +0700 |
| commit | 92c2a229d9c9b510d71b928978872a8b107e9d5a (patch) | |
| tree | 8d8161a49a0bdc46d4c28d3f2682bb485314a41d /src/pages/forgot-password.jsx | |
| parent | 62bebc1d33fd090d7666e18e7a0326ef7ef36897 (diff) | |
Documentation and refactor code
Diffstat (limited to 'src/pages/forgot-password.jsx')
| -rw-r--r-- | src/pages/forgot-password.jsx | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/pages/forgot-password.jsx b/src/pages/forgot-password.jsx index 6211d237..23239363 100644 --- a/src/pages/forgot-password.jsx +++ b/src/pages/forgot-password.jsx @@ -91,7 +91,11 @@ const FormComponent = () => { placeholder='Masukan alamat email' autoFocus /> - <button type='submit' disabled={!email || isLoading} className='btn-yellow font-semibold mt-4 w-full'> + <button + type='submit' + disabled={!email || isLoading} + className='btn-yellow font-semibold mt-4 w-full' + > {isLoading ? 'Loading...' : 'Kirim Permintaan'} </button> </form> |
