LoginComp.js 2.33 KB
Newer Older
Spark's avatar
Spark committed
1
2
import React from 'react'
import '../App.css'
Spark's avatar
Spark committed
3
4
import { Form, Button, Row, Col,  Card } from 'react-bootstrap';
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
29
30
31
32
        justifyContent: 'center',
        margin: 'auto',
        padding: '10px'
    }


    return (
        <Row className='text-center w-100 my-2'>
            <Card style={cardstyled}>
Spark's avatar
Spark committed
33
                <Card.Title id='impactTitle'>
Spark's avatar
Spark committed
34
35
                    LOGIN
                </Card.Title>
Spark's avatar
Spark committed
36
37
38
                <Card.Subtitle style={{ fontWeight: 'lighter' }}>
                    Log in with your social media account or email address
                </Card.Subtitle>
Spark's avatar
Spark committed
39
40
41
42
43
44
45
46
47
48
                <hr />
                <Card.Text>
                    <Form style={inboxstyled}>
                        <Form.Group controlId="formBasicEmail">
                            <Form.Control type="email" placeholder="Email" />
                        </Form.Group>

                        <Button variant='light' type="submit" id='formbtn'>
                            LOGIN
                        </Button>
Spark's avatar
Spark committed
49

Spark's avatar
Spark committed
50
                    </Form>
Spark's avatar
Spark committed
51
52
53
54
55
56
57
58
59
60
61

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

Spark's avatar
Spark committed
62
63
64
                    <Row style={{ margin: 'auto', marginBottom: '5px', display: 'flex', justifyContent: 'center' }}>
                        <a href="#;" onClick={LoginWithKakao} id='socialLink' >
                            {/* 세미콜론이 붙으면 최상단 이동 x */}
Spark's avatar
Spark committed
65
                            <img src='http://image.kmib.co.kr/online_image/2020/0626/611514110014734788_1.jpg' id='logpng' alt='KAKAO' />
Spark's avatar
Spark committed
66
67
68
69
70
71
72
73
74
75
76
                        </a>

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

        </Row>
    )
}

export default LoginComp;