diff --git a/web-client/public/index.html b/web-client/public/index.html index 9704bad..5fd9794 100644 --- a/web-client/public/index.html +++ b/web-client/public/index.html @@ -26,6 +26,8 @@ --> React App + + diff --git a/web-client/src/App.js b/web-client/src/App.js index e4079c3..1c08267 100644 --- a/web-client/src/App.js +++ b/web-client/src/App.js @@ -6,7 +6,9 @@ import './global.css'; function App() { return (
-
This is the header
+
+

FSWD

+
diff --git a/web-client/src/pages/signup.js b/web-client/src/pages/signup.js new file mode 100644 index 0000000..cfb782c --- /dev/null +++ b/web-client/src/pages/signup.js @@ -0,0 +1,60 @@ +import '../components/signup.css'; +import '../global.css'; + +export default function Signup(){ + return ( + <> + +
+ +
+
+
+ + +
+
+ + +
+
+ + +
+
+ + +
+
+ + + + +
+ +
+ + +
+
+
+ +
+
+ +
+
+
+ +
+
+
+
+ + ); +} \ No newline at end of file diff --git a/web-client/src/routes.js b/web-client/src/routes.js index cadb0bf..03045f2 100644 --- a/web-client/src/routes.js +++ b/web-client/src/routes.js @@ -2,6 +2,7 @@ import React from 'react'; import App from './App'; import ResetPasswordForm from './components/reset-password-form'; import Messages from './pages/messages'; +import Signup from './pages/signup'; const routes = [ { @@ -19,6 +20,10 @@ const routes = [ { path: '/messages', element: + }, + { + path: '/signup', + element: } ] },