diff options
Diffstat (limited to 'pages/login.tsx')
| -rw-r--r-- | pages/login.tsx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pages/login.tsx b/pages/login.tsx index 42411f6..86066e6 100644 --- a/pages/login.tsx +++ b/pages/login.tsx @@ -45,8 +45,8 @@ export default function LoginPage() { textAlign: "center" }}> <Vierkant> - <Input id="email" label="email of gebruikersnaam" style={{ marginBottom: 12 }}></Input> - <Input id="password" label="wachtwoord" type="password"></Input> + <Input autocomplete="username" id="email" label="email of gebruikersnaam" style={{ marginBottom: 12 }}></Input> + <Input autocomplete="current-password" id="password" label="wachtwoord" type="password"></Input> <div style={{ marginTop: 24, gridGap: 24, |