aboutsummaryrefslogtreecommitdiff
path: root/pages/login.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/login.tsx
parentfa7abcaacb80eac384e771d3c0aa19185a214e8a (diff)
added autocomplete to login/register pages
Diffstat (limited to 'pages/login.tsx')
-rw-r--r--pages/login.tsx4
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,