From a2aa2a40ddf7d4d756ed93da1e0e6217760c8c8e Mon Sep 17 00:00:00 2001 From: harshbhar0629 Date: Sun, 6 Oct 2024 11:28:16 +0530 Subject: [PATCH] Improve UI for signup page and add some more fields --- app/sign-up/page.js | 222 ++++++++++++++++++++++++++++---------------- 1 file changed, 141 insertions(+), 81 deletions(-) diff --git a/app/sign-up/page.js b/app/sign-up/page.js index 783d2ce..5adc56a 100644 --- a/app/sign-up/page.js +++ b/app/sign-up/page.js @@ -1,86 +1,146 @@ -"use client" +/** @format */ +"use client"; - import { UserIcon } from '@heroicons/react/outline'; -import Navbar from '../components/Navbar'; -import Footer from '../components/Footer'; - +import { UserIcon } from "@heroicons/react/outline"; +import Navbar from "../components/Navbar"; +import Footer from "../components/Footer"; export default function SignUp() { - - return ( -
- -
-
-
- -

- Sign up to your account -

-
-
- -
-
- - -
-
- - -
-
-
-
- - -
- -
-
- -
-
-
+ return ( +
+ +
+
+
+ +

+ Sign up to your account +

+
+
+ +
+
+ + +
+
+ + +
+
+ + +
+
+ + +
+
+ + +
+
+
+
+ + +
+ +
+
+ +
+
+
-
-
- ); -} \ No newline at end of file +
+ ); +}