-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #15 from emmanueposu/jbranch3
Jbranch3
- Loading branch information
Showing
6 changed files
with
80 additions
and
5 deletions.
There are no files selected for viewing
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
import { useNavigate } from "react-router-dom"; | ||
import { Form, Button, Card } from "react-bootstrap"; | ||
|
||
function SignUpPage() { | ||
|
||
return ( | ||
<> | ||
<Card style={{ width: '35rem', margin: '0 auto', float: 'none' }}> | ||
<Form className="form-group"> | ||
<Form.Group className="mb-3" controlId="formBasicEmail"> | ||
<Form.Label>Email address</Form.Label> | ||
<Form.Control className="Form-Control" type="email" placeholder="Enter email" /> | ||
<Form.Text className="text-muted"> | ||
We'll never share your email with anyone else. | ||
</Form.Text> | ||
</Form.Group> | ||
|
||
<Form.Group className="mb-3" controlId="formBasicPassword"> | ||
<Form.Label>Password</Form.Label> | ||
<Form.Control type="password" placeholder="Password" /> | ||
</Form.Group> | ||
<Form.Group className="mb-3" controlId="formBasicPassword"> | ||
<Form.Label>Confirm Password</Form.Label> | ||
<Form.Control type="password" placeholder="Confirm Password" /> | ||
</Form.Group> | ||
<Button variant="primary" type="submit"> | ||
Create Account | ||
</Button> | ||
</Form> | ||
</Card> | ||
</> | ||
|
||
); | ||
|
||
} | ||
export default SignUpPage; |