From 5c8814096277ea2a50556a372e0ce773042586b0 Mon Sep 17 00:00:00 2001 From: MinsuKim Date: Thu, 18 Aug 2022 13:01:55 +0900 Subject: [PATCH] =?UTF-8?q?Design=20:=20=ED=99=94=EB=A9=B4=20=EB=A0=88?= =?UTF-8?q?=EC=9D=B4=EC=95=84=EC=9B=83=EB=94=94=EC=9E=90=EC=9D=B8=20?= =?UTF-8?q?=EB=B3=80=EA=B2=BD#6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/page/LoginPage.jsx | 142 +++++++++++++++++++++++++++-------------- 1 file changed, 94 insertions(+), 48 deletions(-) diff --git a/src/page/LoginPage.jsx b/src/page/LoginPage.jsx index d598f34..4bff911 100644 --- a/src/page/LoginPage.jsx +++ b/src/page/LoginPage.jsx @@ -1,59 +1,105 @@ -import React from 'react' +import React from 'react'; import TextField from '@mui/material/TextField'; import Checkbox from '@mui/material/Checkbox'; import Button from '@mui/material/Button'; import FormControlLabel from '@mui/material/FormControlLabel'; import Link from '@mui/material/Link'; -import { Grid, Typography, Box, Container } from '@mui/material'; - -function LoginPage () { +import { Grid, Typography, Box, Container, createTheme, ThemeProvider } from '@mui/material'; +function LoginPage() { + const theme = createTheme({ + palette: { + primary: { + main: '#550064', + }, + secondary: { + main: '#7966ce', + }, + }, + }); return ( -
- - - - Login - - + + + + + + Login + + + - - - } - label="자동로그인"/> - - - 회원가입 - 메인으로 이동 - + + } + label="자동로그인" + /> + + + + {' '} + + {' '} + 회원가입{' '} + {' '} + + + {' '} + + {' '} + 메인으로 이동{' '} + {' '} + + + + - - - -
- ) + + ); } -export default LoginPage \ No newline at end of file +export default LoginPage;