mirror of
https://github.com/rjNemo/ticket_manager
synced 2026-06-12 11:46:40 +00:00
slogan home page
This commit is contained in:
parent
438295325c
commit
913dbbf0a3
2 changed files with 11 additions and 5 deletions
BIN
app.db
BIN
app.db
Binary file not shown.
|
|
@ -12,7 +12,7 @@ import { useAuth0 } from "../authentication/auth0";
|
||||||
const useStyles = makeStyles((theme: Theme) =>
|
const useStyles = makeStyles((theme: Theme) =>
|
||||||
createStyles({
|
createStyles({
|
||||||
root: {
|
root: {
|
||||||
height: "100vh",
|
height: "90vh",
|
||||||
},
|
},
|
||||||
image: {
|
image: {
|
||||||
backgroundImage: "url(https://source.unsplash.com/daily?dev)",
|
backgroundImage: "url(https://source.unsplash.com/daily?dev)",
|
||||||
|
|
@ -41,6 +41,9 @@ const useStyles = makeStyles((theme: Theme) =>
|
||||||
submit: {
|
submit: {
|
||||||
margin: theme.spacing(3, 0, 2),
|
margin: theme.spacing(3, 0, 2),
|
||||||
},
|
},
|
||||||
|
subTitle: {
|
||||||
|
margin: theme.spacing(3, 0),
|
||||||
|
},
|
||||||
})
|
})
|
||||||
);
|
);
|
||||||
|
|
||||||
|
|
@ -57,19 +60,22 @@ export default function SignInSide() {
|
||||||
<Avatar className={classes.avatar}>
|
<Avatar className={classes.avatar}>
|
||||||
<LockOutlinedIcon />
|
<LockOutlinedIcon />
|
||||||
</Avatar>
|
</Avatar>
|
||||||
<Typography component="h1" variant="h5">
|
<Typography component="h1" variant="h3">
|
||||||
Sign in
|
BugBuster
|
||||||
|
</Typography>
|
||||||
|
<Typography component="h2" variant="h5" className={classes.subTitle}>
|
||||||
|
Catch any Bugs on the Fly
|
||||||
</Typography>
|
</Typography>
|
||||||
<form className={classes.form} noValidate>
|
<form className={classes.form} noValidate>
|
||||||
<Button
|
<Button
|
||||||
type="submit"
|
type="submit"
|
||||||
fullWidth
|
fullWidth
|
||||||
variant="contained"
|
variant="contained"
|
||||||
color="primary"
|
color="secondary"
|
||||||
className={classes.submit}
|
className={classes.submit}
|
||||||
onClick={() => loginWithRedirect({})}
|
onClick={() => loginWithRedirect({})}
|
||||||
>
|
>
|
||||||
Sign In
|
Get Started
|
||||||
</Button>
|
</Button>
|
||||||
</form>
|
</form>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue