mirror of
https://github.com/kuhyx/WUT_Computer_Science.git
synced 2026-07-06 21:23:13 +02:00
22 lines
619 B
React
22 lines
619 B
React
|
|
import 'bootstrap/dist/css/bootstrap.min.css';
|
||
|
|
|
||
|
|
import Button from 'react-bootstrap/Button';
|
||
|
|
import Form from 'react-bootstrap/Form';
|
||
|
|
|
||
|
|
export default function Login() {
|
||
|
|
return (
|
||
|
|
<Form>
|
||
|
|
<Form.Group className="mb-3" controlId="formLogin">
|
||
|
|
<Form.Label>Login</Form.Label>
|
||
|
|
<Form.Control type="login" placeholder="Enter Login" />
|
||
|
|
</Form.Group>
|
||
|
|
<Form.Group className="mb-3" controlId="formBasicEmail">
|
||
|
|
<Form.Label>Password</Form.Label>
|
||
|
|
<Form.Control type="password" placeholder="Enter Password" />
|
||
|
|
</Form.Group>
|
||
|
|
<Button variant="primary" type="submit">
|
||
|
|
Submit
|
||
|
|
</Button>
|
||
|
|
</Form>
|
||
|
|
);
|
||
|
|
}
|