mirror of
https://github.com/rjNemo/ticket_manager
synced 2026-06-06 08:46:39 +00:00
update signin logo
This commit is contained in:
parent
467a5bd74f
commit
5cb1efa9c1
3 changed files with 10 additions and 4 deletions
|
|
@ -10,7 +10,7 @@ using TicketManager.Models;
|
|||
|
||||
namespace TicketManager.Controllers
|
||||
{
|
||||
// [Authorize]
|
||||
[Authorize]
|
||||
[Route("api/v1/[controller]")]
|
||||
[ApiController]
|
||||
public class TicketsController : ControllerBase
|
||||
|
|
|
|||
|
|
@ -10,6 +10,7 @@ import {
|
|||
} from "@material-ui/core";
|
||||
import { createStyles, makeStyles, Theme } from "@material-ui/core/styles";
|
||||
import MenuIcon from "@material-ui/icons/Menu";
|
||||
import BugReportIcon from "@material-ui/icons/BugReport";
|
||||
import * as ROUTES from "../constants/routes";
|
||||
import { useAuth0 } from "../authentication/auth0";
|
||||
import { getUID } from "../authentication/helpers";
|
||||
|
|
@ -45,7 +46,12 @@ export default function ButtonAppBar() {
|
|||
<MenuIcon />
|
||||
</IconButton>
|
||||
<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
|
||||
</Button>
|
||||
</Typography>
|
||||
|
|
|
|||
|
|
@ -4,7 +4,7 @@ import Button from "@material-ui/core/Button";
|
|||
import CssBaseline from "@material-ui/core/CssBaseline";
|
||||
import Paper from "@material-ui/core/Paper";
|
||||
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 { makeStyles, createStyles, Theme } from "@material-ui/core/styles";
|
||||
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>
|
||||
<div className={classes.paper}>
|
||||
<Avatar className={classes.avatar}>
|
||||
<LockOutlinedIcon />
|
||||
<BugReportOutlinedIcon />
|
||||
</Avatar>
|
||||
<Typography component="h1" variant="h3">
|
||||
BugBuster
|
||||
|
|
|
|||
Loading…
Reference in a new issue