xxxxxxxxxx
1
<!DOCTYPE html>
2
<html lang="en">
3
<head>
4
<meta charset="utf-8" />
5
<link rel="icon" href="%PUBLIC_URL%/favicon.ico" />
6
<meta name="viewport" content="width=device-width, initial-scale=1" />
7
<meta name="theme-color" content="#000000" />
8
<meta
9
name="description"
10
content="Web site created using create-react-app"
11
/>
12
<link rel="apple-touch-icon" href="%PUBLIC_URL%/logo192.png" />
13
<link
14
href="https://fonts.googleapis.com/css?family=Roboto:300,400,500,700&display=swap"
15
rel="stylesheet"
16
/>
17
<link
18
href="https://use.fontawesome.com/releases/v5.15.1/css/all.css"
19
rel="stylesheet"
20
/>
21
22
<!--
23
manifest.json provides metadata used when your web app is installed on a
24
user's mobile device or desktop. See https://developers.google.com/web/fundamentals/web-app-manifest/
25
-->
26
<link rel="manifest" href="%PUBLIC_URL%/manifest.json" />
27
<!--
28
Notice the use of %PUBLIC_URL% in the tags above.
29
It will be replaced with the URL of the `public` folder during the build.
30
Only files inside the `public` folder can be referenced from the HTML.
31
32
Unlike "/favicon.ico" or "favicon.ico", "%PUBLIC_URL%/favicon.ico" will
33
work correctly both with client-side routing and a non-root public URL.
34
Learn how to configure a non-root public URL by running `npm run build`.
35
-->
36
<title>MDBReact5 Template App</title>
37
</head>
38
<body>
39
<noscript>You need to enable JavaScript to run this app.</noscript>
40
<div id="root"></div>
41
<!--
42
This HTML file is a template.
43
If you open it directly in the browser, you will see an empty page.
44
45
You can add webfonts, meta tags, or analytics to this file.
46
The build step will place the bundled scripts into the <body> tag.
47
48
To begin the development, run `npm start` or `yarn start`.
49
To create a production bundle, use `npm run build` or `yarn build`.
50
-->
51
</body>
52
</html>
53
xxxxxxxxxx
1
.cascading-right {
2
margin-right: -50px;
3
}
4
@media (max-width: 991.98px) {
5
.cascading-right {
6
margin-right: 0;
7
}
8
}
9
xxxxxxxxxx
1
import React from 'react';
2
import {
3
MDBContainer,
4
MDBRow,
5
MDBCard,
6
MDBCardHeader,
7
MDBCol,
8
MDBCardBody,
9
MDBTabs,
10
MDBTabsItem,
11
MDBTabsLink,
12
MDBTabsPane,
13
MDBTabsContent,
14
MDBIcon,
15
MDBCheckbox,
16
MDBInput,
17
MDBBtn,
18
MDBTextArea,
19
} from 'mdb-react-ui-kit';
20
21
function App() {
22
return (
23
<MDBContainer fluid className='mt-5'>
24
<section className='text-center text-lg-start'>
25
<div className='container py-4'>
26
<MDBRow className='g-0 align-items-center'>
27
<MDBCol lg='6' className='mb-5 mb-lg-0'>
28
<div
29
className='card cascading-right'
30
style={{ background: 'hsla(0, 0%, 100%, 0.55)', backdropFilter: 'blur(30px)' }}
31
>
32
<div className='card-body p-5 shadow-5 text-center'>
33
<h2 className='fw-bold mb-5'>Sign up now</h2>
34
<form>
35
<MDBRow className='mb-4'>
36
<MDBCol>
37
<MDBInput className='mb-4' id='first2' label='First name' />
38
</MDBCol>
39
<MDBCol>
40
<MDBInput className='mb-4' id='last2' label='Last name' />
41
</MDBCol>
42
</MDBRow>
43
44
<MDBInput className='mb-4' type='email' id='email2' label='Email address' />
45
<MDBInput className='mb-4' type='password' id='password2' label='Password' />
46
47
<MDBRow className='mb-4 justify-content-center'>
48
<MDBCol md='6' className='d-flex justify-content-center'>
49
<MDBCheckbox className=' mb-3 mb-md-0' defaultChecked label=' Subscribe to our newsletter' />
50
</MDBCol>
51
</MDBRow>
52
53
<MDBBtn type='submit' block className='mb-4'>
54
Sign up
55
</MDBBtn>
56
57
<div className='text-center'>
58
<p>or sign up with:</p>
59
<MDBBtn color='link' type='button' floating className='mx-1'>
60
<MDBIcon fab icon='facebook-f' />
61
</MDBBtn>
62
63
<MDBBtn color='link' type='button' floating className='mx-1'>
64
<MDBIcon fab icon='google' />
65
</MDBBtn>
66
67
<MDBBtn color='link' type='button' floating className='mx-1'>
68
<MDBIcon fab icon='twitter' />
69
</MDBBtn>
70
71
<MDBBtn color='link' type='button' floating className='mx-1'>
72
<MDBIcon fab icon='github' />
73
</MDBBtn>
74
</div>
75
</form>
76
</div>
77
</div>
78
</MDBCol>
79
80
<MDBCol lg='6' className='mb-5 mb-lg-0'>
81
<img
82
src='https://mdbootstrap.com/img/new/ecommerce/vertical/004.jpg'
83
className='w-100 rounded-4 shadow-4'
84
alt=''
85
/>
86
</MDBCol>
87
</MDBRow>
88
</div>
89
</section>
90
</MDBContainer>
91
);
92
}
93
94
export default App;
95
Console errors: 0