Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: added enrollment form #27

Merged
3 changes: 3 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,11 @@
"@emotion/react": "^11.13.3",
"@emotion/styled": "^11.13.0",
"@hookform/resolvers": "^3.9.0",
"@mui/icons-material": "^6.1.5",
"@mui/material": "^6.1.2",
"@mui/material-nextjs": "^6.1.2",
"@mui/x-date-pickers": "^7.21.0",
"libphonenumber-js": "^1.11.12",
"@next/bundle-analyzer": "^15.0.1",
"@react-email/components": "^0.0.25",
"bcrypt": "^5.1.1",
Expand Down
110 changes: 107 additions & 3 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

18 changes: 18 additions & 0 deletions src/app/enrollment-form/page.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
import { Box } from "@mui/material";

import GeneralInformationSection from "@/components/EnrollmentForm/GeneralInformationSection";

export default function EnrollmentForm() {
return (
<Box
sx={{
width: "100vw",
display: "flex",
justifyContent: "center",
alignItems: "center",
}}
>
<GeneralInformationSection />
</Box>
);
}
2 changes: 1 addition & 1 deletion src/app/test/account/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ export default function TestAccountCreationPage() {
<form onSubmit={handleSubmit(onSubmit)}>
<Box
sx={{
width: "min(90vw, 500px)",
width: "min(90vw, 700px)",
display: "grid",
gap: 2,
gridTemplateColumns: "1fr",
Expand Down
Loading