LoginPage.js 5.22 KB
Newer Older
Kim, Subin's avatar
Kim, Subin committed
1
2
3
4
5
6
7
import React, { } from 'react';
import styled from 'styled-components';
import { Link } from 'react-router-dom';
import { Formik } from 'formik';
import * as Yup from 'yup';

const Log = styled.div`
Lee Jin Ju's avatar
Lee Jin Ju committed
8
    background-color: #7B031D;
Kim, Subin's avatar
Kim, Subin committed
9
10
`
const Logo = styled.div`
Lee Jin Ju's avatar
Lee Jin Ju committed
11
    background-color: rgb(239, 218, 200);
Kim, Subin's avatar
Kim, Subin committed
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
`

function Login() {
    return (
        <div className="container-fluid">
            <div className="row">
                <Logo className="col-md-5 col-12">
                    <h2>고려대학교</h2>
                    <h4>대관 시스템</h4>
                </Logo>
                <Log className="col-md-7 col-12">
                    <Formik
                        initialValues={{ email: '', password: '' }}
                        validationSchema={Yup.object({
                            email: Yup.string()
                                .email('이메일형식이 유효하지 않습니다.')
                                .required('이메일을 입력해주세요.'),
                            password: Yup.string()
                                .required('비밀번호를 입력해주세요.')
                                .min(8, '8자 이상 입력해주세요.'),
                        })}
                        onSubmit={(values, { setSubmitting }) => {
                            // axios({
                            //   method: 'post',
                            //   url: '/login',
                            //   data: values,
                            // }).then(res => {
                            //   if (res.status === 404) return alert(res.data.error)
                            alert("로그인이 완료되었습니다!")

                            //   localStorage.setItem('token', res.data.token);
                            //   localStorage.setItem('id', res.data.users._id);
                            //   setState(true);
                            // })
                            //   .catch(err => {
                            //     alert(err.error)
                            //   });

                            setTimeout(() => {
                                setSubmitting(false);
                            }, 400);  // finish the cycle in handler
                        }}
                    >
                        {({
                            errors,
                            touched,
                            handleSubmit,
                            getFieldProps,  // contain values, handleChange, handleBlur
                            isSubmitting,
                        }) => (
                                <div className="row justify-content-center align-items-center">
                                    <form onSubmit={handleSubmit} className="col-sm-3">
                                        <div className="form-group mb-4">
                                            <input
                                                className={(touched.email && errors.email ? 'form-control is-invalid' : "form-control")}
                                                type="email"
                                                name="email"
                                                {...getFieldProps('email')}
                                                placeholder="Input Email"
                                            />
                                            {touched.email && errors.email ? (
                                                <div className="invalid-feedback text-left">{errors.email}</div>
                                            ) : null}
                                        </div>
                                        <div className="form-group mb-4">
                                            <input
                                                className={(touched.password && errors.password ? 'form-control is-invalid' : "form-control")}
                                                type="password"
                                                name="password"
                                                {...getFieldProps('password')}
                                                placeholder="Input Password"
                                            />
                                            {touched.password && errors.password ? (
                                                <div className="invalid-feedback text-left">{errors.password}</div>
                                            ) : null}
                                        </div>
                                        <button type="submit" className="btn btn-dark" disabled={isSubmitting}>
                                            Login
                  </button>
                                        <button>
                                            <Link to="/home">gha</Link></button>
                                        <Link to="/signup">비밀번호를 잊으셨나요?</Link>
                                        <div></div>
                                        <Link to="/signup">회원이 아니신가요?</Link>
                                    </form>
                                </div>
                            )}
                    </Formik>

                </Log>
            </div>
        </div>
    )
}

Lee Jin Ju's avatar
Lee Jin Ju committed
107
export default Login;