LoginComp.js 3.67 KB
Newer Older
Spark's avatar
Spark committed
1
import React, { useState } from 'react';
Spark's avatar
Spark committed
2
import '../App.css'
Spark's avatar
Spark committed
3
import { Form, Button, Row, Col, Card, Alert } from 'react-bootstrap';
Spark's avatar
Spark committed
4
import { LoginWithKakao } from '../utils/Oauth';
Spark's avatar
Spark committed
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22

function LoginComp() {

    const cardstyled = {
        margin: 'auto',
        padding: '1em',
        display: 'flex',
        justifyContent: 'center',
        width: '100%',
        borderWidth: '3px',
        borderRadius: '20px',
        borderColor: 'rgb(110, 189, 142)',
        color: '#04AB70'
    }

    const inboxstyled = {
        display: 'flex',
        flexDirection: 'column',
Spark's avatar
Spark committed
23
        maxWidth: '80%',
Spark's avatar
Spark committed
24
25
26
27
28
        justifyContent: 'center',
        margin: 'auto',
        padding: '10px'
    }

Spark's avatar
Spark committed
29
30
31
32
33
34
    const [emailSent, setEmailSent] = useState(false)
    const [alertShow, setAlertShow] = useState(true)

    function CheckEmailSend() {
        setEmailSent(!emailSent)
    }
Spark's avatar
Spark committed
35
36
37
38

    return (
        <Row className='text-center w-100 my-2'>
            <Card style={cardstyled}>
Spark's avatar
Spark committed
39
                <Card.Title id='impactTitle'>
Spark's avatar
Spark committed
40
41
                    LOGIN
                </Card.Title>
Spark's avatar
Spark committed
42
43
44
                <Card.Subtitle style={{ fontWeight: 'lighter' }}>
                    Log in with your social media account or email address
                </Card.Subtitle>
Spark's avatar
Spark committed
45
46
                <hr />
                <Card.Text>
Spark's avatar
Spark committed
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
                    <Row className='m-auto d-flex justify-content-center' style={{ width: '80%' }}>
                        {!emailSent ?
                            <Alert show={alertShow} variant={'success'}>
                                <Col>
                                    😍 이메일 전송이 완료 되었습니다.
                                </Col>
                                <Alert.Link href='/' style={{ fontSize: '0.8em' }}>
                                    이메일 확인 하러가기 
                                </Alert.Link>
                            </Alert>
                            :
                            <Alert show={alertShow} variant={'danger'}>
                                <Col>
                                    😭 이메일을 정확하게 적어주세요.
                                </Col>
                            </Alert>
                        }
                        <Button onClick={() => setAlertShow(true)}>보여주고</Button>
                        <Button onClick={() => setAlertShow(false)}>안보여주고</Button>
                    </Row>
Spark's avatar
Spark committed
67
68
69
70
71
                    <Form style={inboxstyled}>
                        <Form.Group controlId="formBasicEmail">
                            <Form.Control type="email" placeholder="Email" />
                        </Form.Group>

Spark's avatar
Spark committed
72
                        <Button variant='light' type="submit" id='formbtn' onClick={CheckEmailSend}>
Spark's avatar
Spark committed
73
74
                            LOGIN
                        </Button>
Spark's avatar
Spark committed
75

Spark's avatar
Spark committed
76
                    </Form>
Spark's avatar
Spark committed
77
78
79
80
81
82
83
84
85
86
87

                    <Row className='d-flex align-items-center m-2'>
                        <Col>
                            <hr />
                        </Col>
                        OR
                        <Col>
                            <hr />
                        </Col>
                    </Row>

Spark's avatar
Spark committed
88
89
90
                    <Row style={{ margin: 'auto', marginBottom: '5px', display: 'flex', justifyContent: 'center' }}>
                        <a href="#;" onClick={LoginWithKakao} id='socialLink' >
                            {/* 세미콜론이 붙으면 최상단 이동 x */}
Spark's avatar
Spark committed
91
                            <img src='http://image.kmib.co.kr/online_image/2020/0626/611514110014734788_1.jpg' id='logpng' alt='KAKAO' />
Spark's avatar
Spark committed
92
93
94
95
96
97
98
99
100
101
102
                        </a>

                    </Row>
                </Card.Text>
            </Card>

        </Row>
    )
}

export default LoginComp;