aboutsummaryrefslogtreecommitdiff
path: root/pages
diff options
context:
space:
mode:
Diffstat (limited to 'pages')
-rw-r--r--pages/login.tsx4
-rw-r--r--pages/register.tsx6
2 files changed, 5 insertions, 5 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,
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>