2022-09-07 14:24:06 +00:00
|
|
|
|
import * as React from "react";
|
2022-09-08 17:21:17 +00:00
|
|
|
|
import { Box, Typography, Button } from "@mui/material";
|
2022-09-07 14:24:06 +00:00
|
|
|
|
import theme from "../../theme";
|
2022-09-08 17:21:17 +00:00
|
|
|
|
import Logo from "../Logo";
|
2022-09-07 14:24:06 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
const Authorization: React.FC = () => {
|
|
|
|
|
return (
|
|
|
|
|
<React.Fragment>
|
2022-09-08 17:21:17 +00:00
|
|
|
|
<Logo />
|
2022-09-07 14:24:06 +00:00
|
|
|
|
|
|
|
|
|
<Box sx={{
|
2022-09-08 17:21:17 +00:00
|
|
|
|
width: "100%",
|
|
|
|
|
height: "100px",
|
2022-09-07 14:24:06 +00:00
|
|
|
|
display: "flex",
|
|
|
|
|
flexDirection: "column",
|
2022-09-08 17:21:17 +00:00
|
|
|
|
justifyContent: "space-between",
|
2022-09-07 14:24:06 +00:00
|
|
|
|
alignItems: "center"
|
|
|
|
|
}}>
|
2022-09-08 17:21:17 +00:00
|
|
|
|
<Box>
|
|
|
|
|
<Typography variant="h6">
|
|
|
|
|
Все пользователи
|
|
|
|
|
</Typography>
|
|
|
|
|
</Box>
|
2022-09-07 14:24:06 +00:00
|
|
|
|
|
2022-09-08 17:21:17 +00:00
|
|
|
|
<Button
|
|
|
|
|
variant = "contained"
|
|
|
|
|
sx={{
|
|
|
|
|
backgroundColor: theme.palette.primary.light,
|
2022-09-07 14:24:06 +00:00
|
|
|
|
width: "100%",
|
2022-09-08 17:21:17 +00:00
|
|
|
|
height: "62px",
|
|
|
|
|
"&:hover": {
|
|
|
|
|
backgroundColor: theme.palette.primary.dark
|
|
|
|
|
}
|
2022-09-07 14:24:06 +00:00
|
|
|
|
}}>
|
2022-09-08 17:21:17 +00:00
|
|
|
|
ВОЙТИ
|
|
|
|
|
</Button>
|
|
|
|
|
</Box>
|
2022-09-07 14:24:06 +00:00
|
|
|
|
|
2022-09-08 17:21:17 +00:00
|
|
|
|
<Box sx={{
|
|
|
|
|
width: "100%",
|
|
|
|
|
height: "100px",
|
|
|
|
|
display: "flex",
|
|
|
|
|
flexDirection: "column",
|
|
|
|
|
justifyContent: "space-between",
|
|
|
|
|
alignItems: "center"
|
|
|
|
|
}}>
|
|
|
|
|
<Box>
|
|
|
|
|
<Typography variant="h6">
|
|
|
|
|
Общая статистика
|
|
|
|
|
</Typography>
|
|
|
|
|
</Box>
|
2022-09-07 14:24:06 +00:00
|
|
|
|
|
2022-09-08 17:21:17 +00:00
|
|
|
|
<Button
|
|
|
|
|
variant = "contained"
|
|
|
|
|
sx={{
|
|
|
|
|
backgroundColor: theme.palette.primary.light,
|
2022-09-07 14:24:06 +00:00
|
|
|
|
width: "100%",
|
2022-09-08 17:21:17 +00:00
|
|
|
|
height: "62px",
|
|
|
|
|
"&:hover": {
|
|
|
|
|
backgroundColor: theme.palette.primary.dark
|
|
|
|
|
}
|
2022-09-07 14:24:06 +00:00
|
|
|
|
}}>
|
2022-09-08 17:21:17 +00:00
|
|
|
|
ВОЙТИ
|
|
|
|
|
</Button>
|
|
|
|
|
</Box>
|
2022-09-07 14:24:06 +00:00
|
|
|
|
|
2022-09-08 17:21:17 +00:00
|
|
|
|
<Box sx={{
|
|
|
|
|
width: "100%",
|
|
|
|
|
height: "100px",
|
|
|
|
|
display: "flex",
|
|
|
|
|
flexDirection: "column",
|
|
|
|
|
justifyContent: "space-between",
|
|
|
|
|
alignItems: "center"
|
|
|
|
|
}}>
|
|
|
|
|
<Box>
|
|
|
|
|
<Typography variant="h6">
|
|
|
|
|
Шаблонизатор документов
|
|
|
|
|
</Typography>
|
|
|
|
|
</Box>
|
2022-09-07 14:24:06 +00:00
|
|
|
|
|
2022-09-08 17:21:17 +00:00
|
|
|
|
<Button
|
|
|
|
|
variant = "contained"
|
|
|
|
|
sx={{
|
|
|
|
|
backgroundColor: theme.palette.primary.light,
|
2022-09-07 14:24:06 +00:00
|
|
|
|
width: "100%",
|
2022-09-08 17:21:17 +00:00
|
|
|
|
height: "62px",
|
|
|
|
|
"&:hover": {
|
|
|
|
|
backgroundColor: theme.palette.primary.dark
|
|
|
|
|
}
|
2022-09-07 14:24:06 +00:00
|
|
|
|
}}>
|
2022-09-08 17:21:17 +00:00
|
|
|
|
ВОЙТИ
|
|
|
|
|
</Button>
|
|
|
|
|
</Box>
|
2022-09-07 14:24:06 +00:00
|
|
|
|
|
2022-09-08 17:21:17 +00:00
|
|
|
|
<Box sx={{
|
|
|
|
|
width: "100%",
|
|
|
|
|
height: "100px",
|
|
|
|
|
display: "flex",
|
|
|
|
|
flexDirection: "column",
|
|
|
|
|
justifyContent: "space-between",
|
|
|
|
|
alignItems: "center"
|
|
|
|
|
}}>
|
|
|
|
|
<Box>
|
|
|
|
|
<Typography variant="h6">
|
|
|
|
|
Конструктор опросов
|
|
|
|
|
</Typography>
|
|
|
|
|
</Box>
|
2022-09-07 14:24:06 +00:00
|
|
|
|
|
2022-09-08 17:21:17 +00:00
|
|
|
|
<Button
|
|
|
|
|
variant = "contained"
|
|
|
|
|
sx={{
|
|
|
|
|
backgroundColor: theme.palette.primary.light,
|
2022-09-07 14:24:06 +00:00
|
|
|
|
width: "100%",
|
2022-09-08 17:21:17 +00:00
|
|
|
|
height: "62px",
|
|
|
|
|
"&:hover": {
|
|
|
|
|
backgroundColor: theme.palette.primary.dark
|
|
|
|
|
}
|
2022-09-07 14:24:06 +00:00
|
|
|
|
}}>
|
2022-09-08 17:21:17 +00:00
|
|
|
|
ВОЙТИ
|
|
|
|
|
</Button>
|
|
|
|
|
</Box>
|
2022-09-07 14:24:06 +00:00
|
|
|
|
|
2022-09-08 17:21:17 +00:00
|
|
|
|
<Box sx={{
|
|
|
|
|
width: "100%",
|
|
|
|
|
height: "100px",
|
|
|
|
|
display: "flex",
|
|
|
|
|
flexDirection: "column",
|
|
|
|
|
justifyContent: "space-between",
|
|
|
|
|
alignItems: "center"
|
|
|
|
|
}}>
|
|
|
|
|
<Box>
|
|
|
|
|
<Typography variant="h6">
|
|
|
|
|
Сокращатель ссылок
|
|
|
|
|
</Typography>
|
|
|
|
|
</Box>
|
2022-09-07 14:24:06 +00:00
|
|
|
|
|
2022-09-08 17:21:17 +00:00
|
|
|
|
<Button
|
|
|
|
|
variant = "contained"
|
|
|
|
|
sx={{
|
|
|
|
|
backgroundColor: theme.palette.primary.light,
|
2022-09-07 14:24:06 +00:00
|
|
|
|
width: "100%",
|
2022-09-08 17:21:17 +00:00
|
|
|
|
height: "62px",
|
|
|
|
|
"&:hover": {
|
|
|
|
|
backgroundColor: theme.palette.primary.dark
|
|
|
|
|
}
|
2022-09-07 14:24:06 +00:00
|
|
|
|
}}>
|
2022-09-08 17:21:17 +00:00
|
|
|
|
ВОЙТИ
|
|
|
|
|
</Button>
|
2022-09-07 14:24:06 +00:00
|
|
|
|
</Box>
|
|
|
|
|
</React.Fragment>
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
export default Authorization;
|