aboutsummaryrefslogtreecommitdiff
path: root/pages/register.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'pages/register.tsx')
-rw-r--r--pages/register.tsx6
1 files changed, 3 insertions, 3 deletions
diff --git a/pages/register.tsx b/pages/register.tsx
index 6e2c73f..4940580 100644
--- a/pages/register.tsx
+++ b/pages/register.tsx
@@ -79,9 +79,9 @@ export default function RegisterPage() {
}}>
<Vierkant>
<form>
- <Input id="username" label="gebruikersnaam" style={{ marginBottom: 12 }}></Input>
- <Input id="email" label="email" style={{ marginBottom: 12 }}></Input>
- <Input id="password" label="wachtwoord" type="password"></Input>
+ <Input autocomplete="username" id="username" label="gebruikersnaam" style={{ marginBottom: 12 }}></Input>
+ <Input autocomplete="email" id="email" label="email" style={{ marginBottom: 12 }}></Input>
+ <Input autocomplete="new-password" id="password" label="wachtwoord" type="password"></Input>
<Button text="Registreren" style={{ marginTop: 24 }} onclick={submitRegister}></Button>
</form>
</Vierkant>