mirror of
				https://gitlab.com/comunic/comunicconsole
				synced 2025-11-04 12:14:03 +00:00 
			
		
		
		
	Improve login screen
This commit is contained in:
		
							
								
								
									
										14
									
								
								.vscode/settings.json
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										14
									
								
								.vscode/settings.json
									
									
									
									
										vendored
									
									
								
							@@ -1,5 +1,17 @@
 | 
			
		||||
{
 | 
			
		||||
	"files.exclude": {
 | 
			
		||||
		"node_modules": true
 | 
			
		||||
	}
 | 
			
		||||
	},
 | 
			
		||||
	"editor.defaultFormatter": "esbenp.prettier-vscode",
 | 
			
		||||
	"[javascript]": {
 | 
			
		||||
		"editor.defaultFormatter": "esbenp.prettier-vscode"
 | 
			
		||||
	},
 | 
			
		||||
	"[typescriptreact]": {
 | 
			
		||||
		"editor.defaultFormatter": "esbenp.prettier-vscode"
 | 
			
		||||
	},
 | 
			
		||||
 | 
			
		||||
	"prettier.tabWidth": 4,
 | 
			
		||||
	"prettier.useTabs": true,
 | 
			
		||||
 | 
			
		||||
	"editor.formatOnSave": true
 | 
			
		||||
}
 | 
			
		||||
 
 | 
			
		||||
@@ -1,113 +1,111 @@
 | 
			
		||||
/**
 | 
			
		||||
 * Login route
 | 
			
		||||
 * 
 | 
			
		||||
 *
 | 
			
		||||
 * @author Pierre Hubert
 | 
			
		||||
 */
 | 
			
		||||
 | 
			
		||||
import { Typography, Link, makeStyles, Container, CssBaseline, Avatar, TextField, FormControlLabel, Checkbox, Button, Grid, Box } from "@material-ui/core";
 | 
			
		||||
import LockOutlinedIcon from '@material-ui/icons/LockOutlined';
 | 
			
		||||
import {
 | 
			
		||||
	Typography,
 | 
			
		||||
	Link,
 | 
			
		||||
	makeStyles,
 | 
			
		||||
	Container,
 | 
			
		||||
	CssBaseline,
 | 
			
		||||
	Avatar,
 | 
			
		||||
	TextField,
 | 
			
		||||
	FormControlLabel,
 | 
			
		||||
	Checkbox,
 | 
			
		||||
	Button,
 | 
			
		||||
	Grid,
 | 
			
		||||
	Box,
 | 
			
		||||
} from "@material-ui/core";
 | 
			
		||||
 | 
			
		||||
import LockOutlinedIcon from "@material-ui/icons/LockOutlined";
 | 
			
		||||
import React from "react";
 | 
			
		||||
 | 
			
		||||
function Copyright() {
 | 
			
		||||
    return (
 | 
			
		||||
      <Typography variant="body2" color="textSecondary" align="center">
 | 
			
		||||
        {'Copyright © '}
 | 
			
		||||
        <Link color="inherit" href="https://material-ui.com/">
 | 
			
		||||
          Your Website
 | 
			
		||||
        </Link>{' '}
 | 
			
		||||
        {new Date().getFullYear()}
 | 
			
		||||
        {'.'}
 | 
			
		||||
      </Typography>
 | 
			
		||||
    );
 | 
			
		||||
  }
 | 
			
		||||
  
 | 
			
		||||
  const useStyles = makeStyles((theme) => ({
 | 
			
		||||
    paper: {
 | 
			
		||||
      marginTop: theme.spacing(8),
 | 
			
		||||
      display: 'flex',
 | 
			
		||||
      flexDirection: 'column',
 | 
			
		||||
      alignItems: 'center',
 | 
			
		||||
    },
 | 
			
		||||
    avatar: {
 | 
			
		||||
      margin: theme.spacing(1),
 | 
			
		||||
      backgroundColor: theme.palette.secondary.main,
 | 
			
		||||
    },
 | 
			
		||||
    form: {
 | 
			
		||||
      width: '100%', // Fix IE 11 issue.
 | 
			
		||||
      marginTop: theme.spacing(1),
 | 
			
		||||
    },
 | 
			
		||||
    submit: {
 | 
			
		||||
      margin: theme.spacing(3, 0, 2),
 | 
			
		||||
    },
 | 
			
		||||
  }));
 | 
			
		||||
  
 | 
			
		||||
export function LoginRoute() {
 | 
			
		||||
    const classes = useStyles();
 | 
			
		||||
  
 | 
			
		||||
    return (
 | 
			
		||||
      <Container component="main" maxWidth="xs">
 | 
			
		||||
        <CssBaseline />
 | 
			
		||||
        <div className={classes.paper}>
 | 
			
		||||
          <Avatar className={classes.avatar}>
 | 
			
		||||
            <LockOutlinedIcon />
 | 
			
		||||
          </Avatar>
 | 
			
		||||
          <Typography component="h1" variant="h5">
 | 
			
		||||
            Sign in
 | 
			
		||||
          </Typography>
 | 
			
		||||
          <form className={classes.form} noValidate>
 | 
			
		||||
            <TextField
 | 
			
		||||
              variant="outlined"
 | 
			
		||||
              margin="normal"
 | 
			
		||||
              required
 | 
			
		||||
              fullWidth
 | 
			
		||||
              id="email"
 | 
			
		||||
              label="Email Address"
 | 
			
		||||
              name="email"
 | 
			
		||||
              autoComplete="email"
 | 
			
		||||
              autoFocus
 | 
			
		||||
            />
 | 
			
		||||
            <TextField
 | 
			
		||||
              variant="outlined"
 | 
			
		||||
              margin="normal"
 | 
			
		||||
              required
 | 
			
		||||
              fullWidth
 | 
			
		||||
              name="password"
 | 
			
		||||
              label="Password"
 | 
			
		||||
              type="password"
 | 
			
		||||
              id="password"
 | 
			
		||||
              autoComplete="current-password"
 | 
			
		||||
            />
 | 
			
		||||
            <FormControlLabel
 | 
			
		||||
              control={<Checkbox value="remember" color="primary" />}
 | 
			
		||||
              label="Remember me"
 | 
			
		||||
            />
 | 
			
		||||
            <Button
 | 
			
		||||
              type="submit"
 | 
			
		||||
              fullWidth
 | 
			
		||||
              variant="contained"
 | 
			
		||||
              color="primary"
 | 
			
		||||
              className={classes.submit}
 | 
			
		||||
            >
 | 
			
		||||
              Sign In
 | 
			
		||||
            </Button>
 | 
			
		||||
            <Grid container>
 | 
			
		||||
              <Grid item xs>
 | 
			
		||||
                <Link href="#" variant="body2">
 | 
			
		||||
                  Forgot password?
 | 
			
		||||
                </Link>
 | 
			
		||||
              </Grid>
 | 
			
		||||
              <Grid item>
 | 
			
		||||
                <Link href="#" variant="body2">
 | 
			
		||||
                  {"Don't have an account? Sign Up"}
 | 
			
		||||
                </Link>
 | 
			
		||||
              </Grid>
 | 
			
		||||
            </Grid>
 | 
			
		||||
          </form>
 | 
			
		||||
        </div>
 | 
			
		||||
        <Box mt={8}>
 | 
			
		||||
          <Copyright />
 | 
			
		||||
        </Box>
 | 
			
		||||
      </Container>
 | 
			
		||||
    );
 | 
			
		||||
  }
 | 
			
		||||
  
 | 
			
		||||
	return (
 | 
			
		||||
		<Typography variant="body2" color="textSecondary" align="center">
 | 
			
		||||
			{"Copyright © "}
 | 
			
		||||
			Comunic 
 | 
			
		||||
			{new Date().getFullYear()}
 | 
			
		||||
			{"."}
 | 
			
		||||
		</Typography>
 | 
			
		||||
	);
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
export class LoginRoute extends React.Component {
 | 
			
		||||
	render() {
 | 
			
		||||
		return (
 | 
			
		||||
			<div
 | 
			
		||||
				style={{
 | 
			
		||||
					display: "flex",
 | 
			
		||||
					justifyContent: "center",
 | 
			
		||||
					alignItems: "center",
 | 
			
		||||
					height: "100%",
 | 
			
		||||
				}}
 | 
			
		||||
			>
 | 
			
		||||
				<Container component="main" maxWidth="xs">
 | 
			
		||||
					<CssBaseline />
 | 
			
		||||
					<div
 | 
			
		||||
						style={{
 | 
			
		||||
							marginTop: "8px",
 | 
			
		||||
							display: "flex",
 | 
			
		||||
							flexDirection: "column",
 | 
			
		||||
							alignItems: "center",
 | 
			
		||||
						}}
 | 
			
		||||
					>
 | 
			
		||||
						<Avatar
 | 
			
		||||
							style={{
 | 
			
		||||
								margin: "1px",
 | 
			
		||||
								backgroundColor: "pink",
 | 
			
		||||
							}}
 | 
			
		||||
						>
 | 
			
		||||
							<LockOutlinedIcon />
 | 
			
		||||
						</Avatar>
 | 
			
		||||
						<Typography
 | 
			
		||||
							component="h1"
 | 
			
		||||
							variant="h5"
 | 
			
		||||
							style={{ margin: "10px" }}
 | 
			
		||||
						>
 | 
			
		||||
							Comunic Console
 | 
			
		||||
						</Typography>
 | 
			
		||||
						<form
 | 
			
		||||
							style={{
 | 
			
		||||
								width: "100%", // Fix IE 11 issue.
 | 
			
		||||
								marginTop: "1px",
 | 
			
		||||
							}}
 | 
			
		||||
							noValidate
 | 
			
		||||
						>
 | 
			
		||||
							<TextField
 | 
			
		||||
								variant="outlined"
 | 
			
		||||
								margin="normal"
 | 
			
		||||
								required
 | 
			
		||||
								fullWidth
 | 
			
		||||
								id="email"
 | 
			
		||||
								label="Email Address"
 | 
			
		||||
								name="email"
 | 
			
		||||
								autoComplete="email"
 | 
			
		||||
								autoFocus
 | 
			
		||||
							/>
 | 
			
		||||
 | 
			
		||||
							<Button
 | 
			
		||||
								type="submit"
 | 
			
		||||
								fullWidth
 | 
			
		||||
								variant="contained"
 | 
			
		||||
								color="primary"
 | 
			
		||||
								style={{
 | 
			
		||||
									margin: "10px 0px 2px 0px",
 | 
			
		||||
								}}
 | 
			
		||||
							>
 | 
			
		||||
								Sign In
 | 
			
		||||
							</Button>
 | 
			
		||||
						</form>
 | 
			
		||||
					</div>
 | 
			
		||||
					<Box mt={8}>
 | 
			
		||||
						<Copyright />
 | 
			
		||||
					</Box>
 | 
			
		||||
				</Container>
 | 
			
		||||
			</div>
 | 
			
		||||
		);
 | 
			
		||||
	}
 | 
			
		||||
}
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user