We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6a1edc9 commit 6bd5430Copy full SHA for 6bd5430
client/pages/registerUser/index.js
@@ -37,7 +37,6 @@ export default async function registerUser({ mode }) {
37
<div>
38
<fieldset>
39
<Input
40
- autofill={false}
41
value={user.email}
42
onchange={(e) => {
43
email = e.target.value;
@@ -57,7 +56,7 @@ export default async function registerUser({ mode }) {
57
56
{mode === 'edit' ? (
58
<a href='/change-password'>Change password</a>
59
) : (
60
- <Input autofill={false} type='password' name='password' label='Password' placeholder='password' />
+ <Input type='password' name='password' label='Password' placeholder='password' />
61
)}
62
63
<div className='error'>{errorText}</div>
0 commit comments