diff options
Diffstat (limited to 'src/pages')
-rw-r--r-- | src/pages/register.tsx | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/src/pages/register.tsx b/src/pages/register.tsx index 25ec30b..5b8a606 100644 --- a/src/pages/register.tsx +++ b/src/pages/register.tsx @@ -81,10 +81,12 @@ export default function RegisterPage() { textAlign: "center" }}> <Vierkant> - <Input id={ids.username} label="gebruikersnaam" style={{ marginBottom: 12 }}></Input> - <Input id={ids.email} label="email" style={{ marginBottom: 12 }}></Input> - <Input id={ids.password} label="wachtwoord" type="password"></Input> - <Button text="Registreren" style={{ marginTop: 24 }} onclick={submitRegister}></Button> + <form> + <Input id={ids.username} label="gebruikersnaam" style={{ marginBottom: 12 }}></Input> + <Input id={ids.email} label="email" style={{ marginBottom: 12 }}></Input> + <Input id={ids.password} label="wachtwoord" type="password"></Input> + <Button text="Registreren" style={{ marginTop: 24 }} onclick={submitRegister}></Button> + </form> </Vierkant> </div> </CenteredPage> |