diff --git a/DirectReport/browserview/static/js/auth/signup.js b/DirectReport/browserview/static/js/auth/signup.js index 7e4b3ff8..aaf86c81 100644 --- a/DirectReport/browserview/static/js/auth/signup.js +++ b/DirectReport/browserview/static/js/auth/signup.js @@ -1,59 +1,80 @@ const { useState, useEffect } = React; const SignupForm = () => { + return ( +
+
+ + +
+
+ + +
+
+ + +
+
+ + +
+
+ + +
+
+
+
+ +
+
+ +
+
+
+ +
+ ) +} + +const Signup = () => { return (
-
+

Sign up for an account

-
-
- - -
-
- - -
-
- - -
-
- - -
-
- - -
-
-
-
- -
-
- -
-
-
- -
+ {SignupForm()}
@@ -62,4 +83,4 @@ const SignupForm = () => { } const domContainer = document.querySelector('#root'); -ReactDOM.render(, domContainer); \ No newline at end of file +ReactDOM.render(, domContainer); \ No newline at end of file