update signin logo

This commit is contained in:
Ruidy Nemausat 2020-05-06 14:57:00 +02:00
parent 467a5bd74f
commit 5cb1efa9c1
3 changed files with 10 additions and 4 deletions

View file

@ -10,7 +10,7 @@ using TicketManager.Models;
namespace TicketManager.Controllers namespace TicketManager.Controllers
{ {
// [Authorize] [Authorize]
[Route("api/v1/[controller]")] [Route("api/v1/[controller]")]
[ApiController] [ApiController]
public class TicketsController : ControllerBase public class TicketsController : ControllerBase

View file

@ -10,6 +10,7 @@ import {
} from "@material-ui/core"; } from "@material-ui/core";
import { createStyles, makeStyles, Theme } from "@material-ui/core/styles"; import { createStyles, makeStyles, Theme } from "@material-ui/core/styles";
import MenuIcon from "@material-ui/icons/Menu"; import MenuIcon from "@material-ui/icons/Menu";
import BugReportIcon from "@material-ui/icons/BugReport";
import * as ROUTES from "../constants/routes"; import * as ROUTES from "../constants/routes";
import { useAuth0 } from "../authentication/auth0"; import { useAuth0 } from "../authentication/auth0";
import { getUID } from "../authentication/helpers"; import { getUID } from "../authentication/helpers";
@ -45,7 +46,12 @@ export default function ButtonAppBar() {
<MenuIcon /> <MenuIcon />
</IconButton> </IconButton>
<Typography variant="h6" className={classes.title}> <Typography variant="h6" className={classes.title}>
<Button color="inherit" component={Link} to={ROUTES.HOME}> <Button
color="inherit"
component={Link}
to={ROUTES.HOME}
startIcon={<BugReportIcon />}
>
BugBuster BugBuster
</Button> </Button>
</Typography> </Typography>

View file

@ -4,7 +4,7 @@ import Button from "@material-ui/core/Button";
import CssBaseline from "@material-ui/core/CssBaseline"; import CssBaseline from "@material-ui/core/CssBaseline";
import Paper from "@material-ui/core/Paper"; import Paper from "@material-ui/core/Paper";
import Grid from "@material-ui/core/Grid"; import Grid from "@material-ui/core/Grid";
import LockOutlinedIcon from "@material-ui/icons/LockOutlined"; import BugReportOutlinedIcon from "@material-ui/icons/BugReportOutlined";
import Typography from "@material-ui/core/Typography"; import Typography from "@material-ui/core/Typography";
import { makeStyles, createStyles, Theme } from "@material-ui/core/styles"; import { makeStyles, createStyles, Theme } from "@material-ui/core/styles";
import { useAuth0 } from "../authentication/auth0"; import { useAuth0 } from "../authentication/auth0";
@ -58,7 +58,7 @@ export default function SignInSide() {
<Grid item xs={12} sm={8} md={5} component={Paper} elevation={6} square> <Grid item xs={12} sm={8} md={5} component={Paper} elevation={6} square>
<div className={classes.paper}> <div className={classes.paper}>
<Avatar className={classes.avatar}> <Avatar className={classes.avatar}>
<LockOutlinedIcon /> <BugReportOutlinedIcon />
</Avatar> </Avatar>
<Typography component="h1" variant="h3"> <Typography component="h1" variant="h3">
BugBuster BugBuster