Skip to content

Commit

Permalink
rudimentary terms checkbox (#669)
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelquigley committed Jul 31, 2024
1 parent 4424a90 commit f42bb96
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 5 deletions.
5 changes: 5 additions & 0 deletions ui/src/index.css
Original file line number Diff line number Diff line change
Expand Up @@ -136,3 +136,8 @@ code, pre {
#navbar {
background: linear-gradient(180deg, #0E0238 0%, #231069 100%);
}

#zrok-message-row {
padding: 10px;
height: 50px;
}
7 changes: 2 additions & 5 deletions ui/src/register/SetPasswordForm.js
Original file line number Diff line number Diff line change
Expand Up @@ -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>
Expand Down

0 comments on commit f42bb96

Please sign in to comment.