diff --git a/src/App.js b/src/App.js index be989b1..a77d69d 100644 --- a/src/App.js +++ b/src/App.js @@ -4,6 +4,7 @@ import Container from 'react-bootstrap/Container'; import { Route, Switch } from 'react-router-dom'; import './api/axiosDefaults' import SignUpForm from './pages/auth/SignUpForm'; +import LoginForm from './pages/auth/LoginForm' function App() { @@ -13,7 +14,7 @@ function App() {

Home Page

} /> -

Login!

} /> + } /> } />

Page not found!

} />
diff --git a/src/pages/auth/LoginForm.js b/src/pages/auth/LoginForm.js new file mode 100644 index 0000000..dd1c419 --- /dev/null +++ b/src/pages/auth/LoginForm.js @@ -0,0 +1,75 @@ +import React from "react"; + +import Form from "react-bootstrap/Form"; +import Alert from "react-bootstrap/Alert"; +import Button from "react-bootstrap/Button"; +import Col from "react-bootstrap/Col"; +import Row from "react-bootstrap/Row"; +import Image from "react-bootstrap/Image"; +import Container from "react-bootstrap/Container"; + +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"; + +function LogInForm() { + // Add your component logic here + + return ( + + + + + + +

log in

+ +
+ + Username + + + + + Password + + + + +
+
+ + + Don't have an account? Sign up now! + + + +
+ ); +} + +export default LogInForm;