aboutsummaryrefslogtreecommitdiff
path: root/pages/register.tsx
diff options
context:
space:
mode:
authorlonkaars <l.leblansch@gmail.com>2021-02-10 11:04:37 +0100
committerlonkaars <l.leblansch@gmail.com>2021-02-10 11:04:37 +0100
commitda8d6e89ba9e70f166939f9294c4c52fd33003a1 (patch)
tree3ab911eb192941143f1b98196493d60381e9019c /pages/register.tsx
parentfa7abcaacb80eac384e771d3c0aa19185a214e8a (diff)
added autocomplete to login/register pages
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>