-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathApp.js
More file actions
28 lines (26 loc) · 744 Bytes
/
Copy pathApp.js
File metadata and controls
28 lines (26 loc) · 744 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
import React from 'react';
import logo from './logo.svg';
import './App.css';
import {Button,Form, Input,FormGroup,Label} from 'reactstrap';
function App() {
return (
<Form className="login-form">
<h1>
<span className ="font-weight-bold">User Login</span>
</h1>
<h2 className="text-center">
Welcome !
</h2>
<FormGroup>
<label>E-mail</label>
<input type="email" placeholder ="Email"/>
</FormGroup>
<FormGroup>
<label>Password</label>
<input type="password" placeholder ="Password"/>
</FormGroup>
<Button className ="btn-lg btn-dark btn-block">Log in</Button>
</Form>
);
}
export default App;