HTML
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
SCSS
xxxxxxxxxx
1
body {
2
margin: 0;
3
font-family: Roboto, Helvetica, Arial, sans-serif;
4
-webkit-font-smoothing: antialiased;
5
-moz-osx-font-smoothing: grayscale;
6
}
7
8
code {
9
font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New',
10
monospace;
11
}
12
JS (TypeScript)
xxxxxxxxxx
1
import React, { useState } 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
const [fillActive, setFillActive] = useState('tab-login');
23
24
const handleFillClick = (value: string) => {
25
if (value === fillActive) {
26
return;
27
}
28
29
setFillActive(value);
30
};
31
32
return (
33
<MDBContainer fluid className='mt-5'>
34
<section className='text-center'>
35
<MDBRow className='d-flex justify-content-center'>
36
<MDBCol md='6'>
37
<MDBCard>
38
<MDBCardBody className='p-4'>
39
<MDBTabs pills fill className='mb-3'>
40
<MDBTabsItem>
41
<MDBTabsLink onClick={() => handleFillClick('tab-login')} active={fillActive === 'tab-login'}>
42
Login
43
</MDBTabsLink>
44
</MDBTabsItem>
45
<MDBTabsItem>
46
<MDBTabsLink onClick={() => handleFillClick('tab-register')} active={fillActive === 'tab-register'}>
47
Register
48
</MDBTabsLink>
49
</MDBTabsItem>
50
</MDBTabs>
51
52
<MDBTabsContent>
53
<MDBTabsPane show={fillActive === 'tab-login'} aria-labelledby='tab-login'>
54
<form>
55
<div className='text-center mb-3'>
56
<p>Sign in with:</p>
57
<MDBBtn color='link' type='button' floating className='mx-1'>
58
<MDBIcon fab icon='facebook-f' />
59
</MDBBtn>
60
61
<MDBBtn color='link' type='button' floating className='mx-1'>
62
<MDBIcon fab icon='google' />
63
</MDBBtn>
64
65
<MDBBtn color='link' type='button' floating className='mx-1'>
66
<MDBIcon fab icon='twitter' />
67
</MDBBtn>
68
69
<MDBBtn color='link' type='button' floating className='mx-1'>
70
<MDBIcon fab icon='github' />
71
</MDBBtn>
72
</div>
73
74
<p className='text-center'>or:</p>
75
76
<MDBInput className='mb-4' type='email' id='loginName' label='Email or username' />
77
78
<MDBInput className='mb-4' type='password' id='loginPassword' label='Password' />
79
80
<MDBRow className='mb-4'>
81
<MDBCol md='6' className='d-flex justify-content-center'>
82
<MDBCheckbox className=' mb-3 mb-md-0' defaultChecked label=' Remember me' />
83
</MDBCol>
84
85
<MDBCol md='6' className='d-flex justify-content-center'>
86
<a href='#!'>Forgot password?</a>
87
</MDBCol>
88
</MDBRow>
89
90
<MDBBtn type='submit' block className='mb-4'>
91
Sign in
92
</MDBBtn>
93
94
<div className='text-center'>
95
<p>
96
Not a member? <a href='#!'>Register</a>
97
</p>
98
</div>
99
</form>
100
</MDBTabsPane>
101
<MDBTabsPane show={fillActive === 'tab-register'} aria-labelledby='tab-register'>
102
<form>
103
<div className='text-center mb-3'>
104
<p>Sign up with:</p>
105
<MDBBtn color='link' type='button' floating className='mx-1'>
106
<MDBIcon fab icon='facebook-f' />
107
</MDBBtn>
108
109
<MDBBtn color='link' type='button' floating className='mx-1'>
110
<MDBIcon fab icon='google' />
111
</MDBBtn>
112
113
<MDBBtn color='link' type='button' floating className='mx-1'>
114
<MDBIcon fab icon='twitter' />
115
</MDBBtn>
116
117
<MDBBtn color='link' type='button' floating className='mx-1'>
118
<MDBIcon fab icon='github' />
119
</MDBBtn>
120
</div>
121
122
<p className='text-center'>or:</p>
123
124
<MDBInput className='mb-4' type='text' id='registerName' label='Name' />
125
126
<MDBInput className='mb-4' type='text' id='registerUsername' label='Username' />
127
128
<MDBInput className='mb-4' type='email' id='registerEmail' label='Email' />
129
130
<MDBInput className='mb-4' type='password' id='registerPassword' label='Password' />
131
132
<MDBInput className='mb-4' type='password' id='registerRepeatPassword' label='Repeat password' />
133
134
<MDBCheckbox
135
wrapperClass='d-flex justify-content-center mb-4'
136
defaultChecked
137
label='I have read and agree to the terms'
138
/>
139
140
<MDBBtn type='submit' block className='mb-3'>
141
Sign in
142
</MDBBtn>
143
</form>
144
</MDBTabsPane>
145
</MDBTabsContent>
146
</MDBCardBody>
147
</MDBCard>
148
</MDBCol>
149
</MDBRow>
150
</section>
151
</MDBContainer>
152
);
153
}
154
155
export default App;
156
Console errors: 0