Add "Sign up" button

This commit is contained in:
Ray 2023-09-12 08:56:20 +00:00 committed by GitHub
parent bf85238e07
commit f1b6e70499
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 0 deletions

View File

@ -2,6 +2,7 @@ import Form from 'react-bootstrap/Form';
import Container from 'react-bootstrap/Container';
import Row from 'react-bootstrap/Row';
import Col from 'react-bootstrap/Col';
import Button from "react-bootstrap/Button"
export function Signup ( props ) {
return (
@ -22,6 +23,7 @@ export function Signup ( props ) {
<Form.Label>Password</Form.Label>
<Form.Control type="password" name="password" placeholder='password'/>
</Form.Group>
<Button variant="primary" type="submit">Sign up</Button>
</Form>
</Col>
</Row>