MainLayer.js 4.36 KB
Newer Older
Spark's avatar
layout    
Spark committed
1
2
3
4
5
import React from 'react'
import { useState } from 'react';
import { Button, Form, Image, Row, ButtonGroup, Modal, Dropdown, Col } from 'react-bootstrap';
import { Link } from 'react-router-dom';
import '../App.css'
Spark's avatar
Spark committed
6
7
import SignUp from '../pages/SignUp'
import LoginwithSocial from '../pages/LoginwithSocial';
Spark's avatar
layout    
Spark committed
8
9
10
11
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

function MainLayer() {

    const boxstyled = {
        border: 'solid',
        color: 'rgba(195, 195, 195, 0.753)',
        borderRadius: '20px',
        marginBottom: '1em',
        width: '100%',
        backgroundSize: 'contain',
        margin: 'auto'
    }

    const btnstyled = {
        background: 'rgb(110, 189, 142)',
        margin: '1px',
        display: 'flex',
        justifyContent: 'center',
        maxWidth: '100%',
        borderWidth: '2px',
        fontSize: '10px',
        borderColor: 'rgba(195, 195, 195, 0.753)',
        borderRadius: '20px',
    }

    const loginstyled = {
        margin: 'auto',
        padding: '2px',
        diplay: 'flex',
        justifyContent: 'center',
        borderRadius: '20px'
    }

    const titlesty = {
        display: 'flex',
        justifyContent: 'center',
        background: 'rgb(110, 189, 142)',
        text: 'center'
    }

    const [logshow, setLogshow] = useState(false);
    const [signshow, setSignshow] = useState(false);


    return (
        <>
            <Row className='d-flex align-items-center m-auto w-100'>
                <Col className='m-auto '>
                    <Link to='/' className=' m-auto'>
                        <Image src='/images/EUE11.jpg' alt='EUE' style={boxstyled} />
                    </Link>
                </Col>
                <Dropdown className='d-sm-block d-md-none' style={{ fontSize: '1em' }}>
                    <Dropdown.Toggle style={btnstyled} id="dropdown-basic">
                    </Dropdown.Toggle>
                    <Dropdown.Menu className='z-index-10'>
                        <Dropdown.Item href="#/action-1">
                            <Button className='w-100 m-auto' style={btnstyled} onClick={() => setLogshow(true)}>
                                LOGIN
                            </Button>
                            <Modal
                                size="sm"
                                show={logshow}
                                onHide={() => setLogshow(false)}
                                aria-labelledby="example-modal-sizes-title-sm"
                            >
Spark's avatar
Spark committed
74
                                <LoginwithSocial />
Spark's avatar
layout    
Spark committed
75
76
77
78
                            </Modal>
                        </Dropdown.Item>
                        <Dropdown.Item href="#/action-2">

Spark's avatar
Spark committed
79
80
81
                            <Button className='w-100 m-auto' style={btnstyled} onClick={() => setSignshow(true)}>
                                SIGN UP
                            </Button>
Spark's avatar
layout    
Spark committed
82
83
84
85
86
87
                            <Modal
                                size="md"
                                show={signshow}
                                onHide={() => setSignshow(false)}
                                aria-labelledby="example-modal-sizes-title-sm"
                            >
Spark's avatar
Spark committed
88
                                <SignUp />
Spark's avatar
layout    
Spark committed
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
                            </Modal>
                        </Dropdown.Item>
                    </Dropdown.Menu>
                </Dropdown>
            </Row>

            <Row className='d-none d-md-flex justify-content-center align-items-center my-3 mx-auto w-100'>
                <ButtonGroup vertical className='m-auto' style={{ width: '100%' }}>
                    <Button style={btnstyled} onClick={() => setLogshow(true)}>LOGIN</Button>
                    <Modal
                        size="sm"
                        show={logshow}
                        onHide={() => setLogshow(false)}
                        aria-labelledby="example-modal-sizes-title-sm"
                    >
Spark's avatar
Spark committed
104
                        <LoginwithSocial />
Spark's avatar
layout    
Spark committed
105
106
107
108
109
110
111
112
113
114

                    </Modal>

                    <Button style={btnstyled} onClick={() => setSignshow(true)}>SIGN UP</Button>
                    <Modal
                        size="md"
                        show={signshow}
                        onHide={() => setSignshow(false)}
                        aria-labelledby="example-modal-sizes-title-sm"
                    >
Spark's avatar
Spark committed
115
116
                        <SignUp />

Spark's avatar
layout    
Spark committed
117
118
119
120
121
122
123
124
125
                    </Modal>

                </ButtonGroup>
            </Row>
        </>
    );
}

export default MainLayer