diff options
author | lonkaars <l.leblansch@gmail.com> | 2021-04-19 09:51:38 +0200 |
---|---|---|
committer | lonkaars <l.leblansch@gmail.com> | 2021-04-19 09:51:38 +0200 |
commit | 08ba9024f532554fe2135d2596f1169828b01e5f (patch) | |
tree | 3ec940a1fce58777449774a11942ccb6dffb24a8 /pages/login.tsx | |
parent | 5e664e0694a09cfb7b952dd4bd123cf921950ba0 (diff) |
login/register pages done + fullwidth css class edited
Diffstat (limited to 'pages/login.tsx')
-rw-r--r-- | pages/login.tsx | 44 |
1 files changed, 16 insertions, 28 deletions
diff --git a/pages/login.tsx b/pages/login.tsx index 1e14573..9e26b50 100644 --- a/pages/login.tsx +++ b/pages/login.tsx @@ -49,44 +49,32 @@ export default function LoginPage() { <div> <NavBar /> <CenteredPage width={500} style={{ height: '100vh' }}> - <div - style={{ - position: 'relative', - top: '50%', - transform: 'translateY(-50%)', - margin: '0 auto', - textAlign: 'center', - }} - > - <Vierkant> + <div className='posrel center centeredForm'> + <Vierkant className='pad-l'> <form onSubmit={(e) => submitLogin(e, toast)}> <Input autofocus 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, - display: 'grid', - gridTemplateColumns: '1fr 1fr', - }} - > + className='pad-m fullwidth bg-900 round-t' + /> + <Input + autocomplete='current-password' + id='password' + label='wachtwoord' + type='password' + className='pad-m fullwidth bg-900 round-t' + /> + <div className='sidebyside'> <Button href='/register' text='Registreren' - style={{ backgroundColor: 'var(--background-alt)' }} - > - </Button> - <Button text='Inloggen' onclick={() => submitLogin(null, toast)}></Button> + className='register bg-700 fg-100' + /> + <Button text='Inloggen' className='login' onclick={() => submitLogin(null, toast)} /> </div> - <input type='submit' style={{ display: 'none' }} /> + <input type='submit' className='dispnone' /> </form> </Vierkant> </div> |