diff options
Diffstat (limited to 'pages/register.tsx')
| -rw-r--r-- | pages/register.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pages/register.tsx b/pages/register.tsx index 3616bb8..5426cbc 100644 --- a/pages/register.tsx +++ b/pages/register.tsx @@ -81,7 +81,7 @@ export default function RegisterPage() { }}> <Vierkant> <form onSubmit={submitRegister}> - <Input autocomplete="username" id="username" label="gebruikersnaam" style={{ marginBottom: 12 }}></Input> + <Input autofocus 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> |