diff --git a/src/pages/auth/SignUpForm.js b/src/pages/auth/SignUpForm.js new file mode 100644 index 0000000..5cbc808 --- /dev/null +++ b/src/pages/auth/SignUpForm.js @@ -0,0 +1,78 @@ +import React from "react"; +import { Link } from "react-router-dom"; + +import styles from "../../styles/SignInUpForm.module.css"; +import btnStyles from "../../styles/Button.module.css"; +import appStyles from "../../App.module.css"; + +import { Form, Button, Image, Col, Row, Container } from "react-bootstrap"; + +const SignUpForm = () => { + return ( + + + + + + +

sign up

+
+ + Username + + + + + Password + + + + + Confirm password + + + + +
+
+ + + Already have an account? Sign in + + + +
+ ); +}; + +export default SignUpForm;