rudimentary terms checkbox (#669)

This commit is contained in:
Michael Quigley 2024-07-31 14:04:43 -04:00
parent 4424a909b9
commit f42bb96739
No known key found for this signature in database
GPG Key ID: 9B60314A9DD20A62
2 changed files with 7 additions and 5 deletions

View File

@ -136,3 +136,8 @@ code, pre {
#navbar {
background: linear-gradient(180deg, #0E0238 0%, #231069 100%);
}
#zrok-message-row {
padding: 10px;
height: 50px;
}

View File

@ -88,17 +88,14 @@ const SetPasswordForm = (props) => {
<p>{tou}</p>
</div>
<div class={"zrok-tou"}>
<FormControlLabel control={<Checkbox iconStyle={{fill: 'white'}} required/>} label={<span class={"zrok-type"}>I have read and agree to the above</span>}/>
<FormControlLabel control={<Checkbox style={{color: 'white'}} required/>} label={<span class={"zrok-type"}>I have read and agree to the above</span>}/>
</div>
<Button variant={"light"} type={"submit"}>Register Account</Button>
</Form>
</Row>
<Row>
<Row id={"zrok-message-row"}>
{message}
</Row>
<Row>
</Row>
</Container>
</Row>
</Container>