Commit 4feac4b2 authored by 우지원's avatar 우지원
Browse files

a

parent c0fb0244
...@@ -239,6 +239,7 @@ function Home() { ...@@ -239,6 +239,7 @@ function Home() {
}, []) }, [])
return ( return (
<div style={{ weight: "100vw", height: "100vh", backgroundColor: "" }}> <div style={{ weight: "100vw", height: "100vh", backgroundColor: "" }}>
<Menu style={{ weight: "100%", height: "10%" }} /> <Menu style={{ weight: "100%", height: "10%" }} />
<Row className="mr-0" style={{ weight: "100%", height: "80%" }}> <Row className="mr-0" style={{ weight: "100%", height: "80%" }}>
......
...@@ -54,9 +54,9 @@ function LogIn() { ...@@ -54,9 +54,9 @@ function LogIn() {
return ( return (
<> <>
<Menu /> <Menu />
<Form onSubmit={handleSubmit} className='vh-85 flex-column align-items-center justify-content-center mt-2'> <Form onSubmit={handleSubmit} className="vh-90 flex-column align-items-center justify-content-center mt-2" variant="dark">
<Container className="d-flex justify-content-center"> <div className="d-flex justify-content-center">
<div className="mt-5 p-5 shadow w-75"> <div className="mt-5 p-5 mr-2" style={{ display: "flex", flexDirection: "column", borderStyle: "solid", borderRadius: "5px", borderColor: "#4A5D7E", backgroundColor: "#FFFFFF", padding: '15px', position: "relative" }}>
<h2 className="text-center">로그인</h2> <h2 className="text-center">로그인</h2>
<Form.Group controlId="formGroupEmail"> <Form.Group controlId="formGroupEmail">
<Form.Label>이메일</Form.Label> <Form.Label>이메일</Form.Label>
...@@ -100,7 +100,7 @@ function LogIn() { ...@@ -100,7 +100,7 @@ function LogIn() {
{error} {error}
</Alert>} </Alert>}
</div> </div>
</Container> </div>
</Form> </Form>
</> </>
); );
......
import React, { useState, useEffect } from 'react'; import React, { useState, useEffect } from 'react';
import axios from 'axios' import axios from 'axios'
import { Button, Form, Container, Alert, Spinner} from 'react-bootstrap'; import { Button, Form, Container, Alert, Spinner } from 'react-bootstrap';
import catchErrors from '../utils/catchErrors'; import catchErrors from '../utils/catchErrors';
import { Redirect } from 'react-router-dom'; import { Redirect } from 'react-router-dom';
import Menu from '../Components/Menu'; import Menu from '../Components/Menu';
...@@ -54,9 +54,10 @@ function SingUp() { ...@@ -54,9 +54,10 @@ function SingUp() {
return ( return (
<> <>
<Menu /> <Menu />
<Form onSubmit={handleSubmit} className='vh-100 flex-column align-items-center justify-content-center mt-2'> <Form onSubmit={handleSubmit} className="vh-90 flex-column align-items-center justify-content-center mt-2" variant="dark">
<Container className="d-flex justify-content-center"> <div className="d-flex justify-content-center align-items-center">
<div className="mt-5 p-5 shadow w-75"> <div className="p-5 mt-3" style={{ display: "flex", flexDirection: "column", borderStyle: "solid", borderRadius: "5px", borderColor: "#4A5D7E", backgroundColor: "#FFFFFF", padding: '15px', position: "relative" }}>
<h2 className="text-center ">회원가입</h2> <h2 className="text-center ">회원가입</h2>
...@@ -129,7 +130,7 @@ function SingUp() { ...@@ -129,7 +130,7 @@ function SingUp() {
{error} {error}
</Alert>} </Alert>}
</div> </div>
</Container> </div>
</Form> </Form>
</> </>
) )
......
...@@ -8,6 +8,7 @@ export function handleLogin(data) { ...@@ -8,6 +8,7 @@ export function handleLogin(data) {
export async function handleLogout() { export async function handleLogout() {
sessionStorage.clear(); sessionStorage.clear();
alert('로그아웃 되었습니다')
await axios.get('/auth/logout') await axios.get('/auth/logout')
//login페이지로 이동 //login페이지로 이동
// window.location.href='/login' // window.location.href='/login'
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment