Add "Sign up" button
This commit is contained in:
parent
bf85238e07
commit
f1b6e70499
|
@ -2,6 +2,7 @@ import Form from 'react-bootstrap/Form';
|
||||||
import Container from 'react-bootstrap/Container';
|
import Container from 'react-bootstrap/Container';
|
||||||
import Row from 'react-bootstrap/Row';
|
import Row from 'react-bootstrap/Row';
|
||||||
import Col from 'react-bootstrap/Col';
|
import Col from 'react-bootstrap/Col';
|
||||||
|
import Button from "react-bootstrap/Button"
|
||||||
|
|
||||||
export function Signup ( props ) {
|
export function Signup ( props ) {
|
||||||
return (
|
return (
|
||||||
|
@ -22,6 +23,7 @@ export function Signup ( props ) {
|
||||||
<Form.Label>Password</Form.Label>
|
<Form.Label>Password</Form.Label>
|
||||||
<Form.Control type="password" name="password" placeholder='password'/>
|
<Form.Control type="password" name="password" placeholder='password'/>
|
||||||
</Form.Group>
|
</Form.Group>
|
||||||
|
<Button variant="primary" type="submit">Sign up</Button>
|
||||||
</Form>
|
</Form>
|
||||||
</Col>
|
</Col>
|
||||||
</Row>
|
</Row>
|
||||||
|
|
Loading…
Reference in New Issue