mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
577118ca02
* chore: sign up workflow updated * chore: sign in workflow updated * refactor: folder structure * chore: forgot password workflow * refactor: form component props * chore: forgot password popover for instances with smtp unconfigured * chore: updated UX copy * chore: update reset password link * chore: update email placeholder
54 lines
1.7 KiB
TypeScript
54 lines
1.7 KiB
TypeScript
import React from "react";
|
|
import Image from "next/image";
|
|
import { observer } from "mobx-react-lite";
|
|
// hooks
|
|
import { useApplication, useUser } from "hooks/store";
|
|
// layouts
|
|
import DefaultLayout from "layouts/default-layout";
|
|
// components
|
|
import { SignUpRoot } from "components/account";
|
|
// ui
|
|
import { Spinner } from "@plane/ui";
|
|
// assets
|
|
import BluePlaneLogoWithoutText from "public/plane-logos/blue-without-text.png";
|
|
// types
|
|
import { NextPageWithLayout } from "lib/types";
|
|
|
|
const SignUpPage: NextPageWithLayout = observer(() => {
|
|
// store hooks
|
|
const {
|
|
config: { envConfig },
|
|
} = useApplication();
|
|
const { currentUser } = useUser();
|
|
|
|
if (currentUser || !envConfig)
|
|
return (
|
|
<div className="grid h-screen place-items-center">
|
|
<Spinner />
|
|
</div>
|
|
);
|
|
|
|
return (
|
|
<div className="h-full w-full bg-onboarding-gradient-100">
|
|
<div className="flex items-center justify-between px-8 pb-4 sm:px-16 sm:py-5 lg:px-28">
|
|
<div className="flex items-center gap-x-2 py-10">
|
|
<Image src={BluePlaneLogoWithoutText} height={30} width={30} alt="Plane Logo" className="mr-2" />
|
|
<span className="text-2xl font-semibold sm:text-3xl">Plane</span>
|
|
</div>
|
|
</div>
|
|
|
|
<div className="mx-auto h-full rounded-t-md border-x border-t border-custom-border-200 bg-onboarding-gradient-100 px-4 pt-4 shadow-sm sm:w-4/5 md:w-2/3">
|
|
<div className="h-full overflow-auto rounded-t-md bg-onboarding-gradient-200 px-7 pb-56 pt-24 sm:px-0">
|
|
<SignUpRoot />
|
|
</div>
|
|
</div>
|
|
</div>
|
|
);
|
|
});
|
|
|
|
SignUpPage.getLayout = function getLayout(page: React.ReactElement) {
|
|
return <DefaultLayout>{page}</DefaultLayout>;
|
|
};
|
|
|
|
export default SignUpPage;
|