aboutsummaryrefslogtreecommitdiff
path: root/src/pages
diff options
context:
space:
mode:
authorlonkaars <l.leblansch@gmail.com>2021-01-15 10:16:29 +0100
committerlonkaars <l.leblansch@gmail.com>2021-01-15 10:16:29 +0100
commit061ed07680d0e1f6feb89ad281e46cb321dce21c (patch)
tree9390d5c187f00851b9346c8a230437e53b02e0b1 /src/pages
parentd7e6c155abc6ef8f0fa380b6af03da37602e7e40 (diff)
token cookie working
Diffstat (limited to 'src/pages')
-rw-r--r--src/pages/register.tsx10
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>