From b6907f69a71aae26809feba0d51bc07d838d480b Mon Sep 17 00:00:00 2001 From: Darya Umrikhina Date: Tue, 23 Jul 2024 01:48:07 +0400 Subject: [PATCH] Login:Components:CreateUserForm: change styles and move GreetingUserContainer --- .../CreateUserForm/CreateUserForm.styled.tsx | 6 +- .../sub-components/GreetingUserContainer.tsx | 87 +++++++++++++++++++ 2 files changed, 91 insertions(+), 2 deletions(-) create mode 100644 packages/login/src/components/CreateUserForm/sub-components/GreetingUserContainer.tsx diff --git a/packages/login/src/components/CreateUserForm/CreateUserForm.styled.tsx b/packages/login/src/components/CreateUserForm/CreateUserForm.styled.tsx index d8d94dd524..463801045b 100644 --- a/packages/login/src/components/CreateUserForm/CreateUserForm.styled.tsx +++ b/packages/login/src/components/CreateUserForm/CreateUserForm.styled.tsx @@ -27,6 +27,7 @@ "use client"; import styled, { css } from "styled-components"; + import { mobile, tablet } from "@docspace/shared/utils"; export const RegisterContainer = styled.div<{ @@ -46,6 +47,7 @@ export const RegisterContainer = styled.div<{ align-items: center; color: ${(props) => props.theme.invitePage.borderColor}; padding-top: 35px; + padding-bottom: 0; margin-bottom: 32px; } @@ -79,10 +81,10 @@ export const RegisterContainer = styled.div<{ } .password-field-wrapper { - width: 100%; + min-width: 100%; } - .greeting-container{ + .greeting-user-container{ margin-bottom: 32px; p{ text-align: center; diff --git a/packages/login/src/components/CreateUserForm/sub-components/GreetingUserContainer.tsx b/packages/login/src/components/CreateUserForm/sub-components/GreetingUserContainer.tsx new file mode 100644 index 0000000000..edb36f3e90 --- /dev/null +++ b/packages/login/src/components/CreateUserForm/sub-components/GreetingUserContainer.tsx @@ -0,0 +1,87 @@ +// (c) Copyright Ascensio System SIA 2009-2024 +// +// This program is a free software product. +// You can redistribute it and/or modify it under the terms +// of the GNU Affero General Public License (AGPL) version 3 as published by the Free Software +// Foundation. In accordance with Section 7(a) of the GNU AGPL its Section 15 shall be amended +// to the effect that Ascensio System SIA expressly excludes the warranty of non-infringement of +// any third-party rights. +// +// This program is distributed WITHOUT ANY WARRANTY, without even the implied warranty +// of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. For details, see +// the GNU AGPL at: http://www.gnu.org/licenses/agpl-3.0.html +// +// You can contact Ascensio System SIA at Lubanas st. 125a-25, Riga, Latvia, EU, LV-1021. +// +// The interactive user interfaces in modified source and object code versions of the Program must +// display Appropriate Legal Notices, as required under Section 5 of the GNU AGPL version 3. +// +// Pursuant to Section 7(b) of the License you must retain the original Product logo when +// distributing the program. Pursuant to Section 7(e) we decline to grant you any rights under +// trademark law for use of our trademarks. +// +// All the Product's GUI elements, including illustrations and icon sets, as well as technical writing +// content are licensed under the terms of the Creative Commons Attribution-ShareAlike 4.0 +// International. See the License terms at http://creativecommons.org/licenses/by-sa/4.0/legalcode + +import { useTranslation, Trans } from "react-i18next"; + +import { ColorTheme, ThemeId } from "@docspace/shared/components/color-theme"; +import { IconButton } from "@docspace/shared/components/icon-button"; +import { Text } from "@docspace/shared/components/text"; +import { PRODUCT_NAME } from "@docspace/shared/constants"; + +import ArrowIcon from "PUBLIC_DIR/images/arrow.left.react.svg?url"; + +const DEFAULT_CREATION_TEXT = + "A {{productName}} account will be created for {{email}}. Please, complete your registration:"; + +type GreetingUserContainerProps = { + email: string; + emailFromLink: string; + type: string; + onClickBack(): void; +}; + +export const GreetingUserContainer = ({ + email, + onClickBack, + emailFromLink, + type, +}: GreetingUserContainerProps) => { + const { t } = useTranslation(["Confirm", "Common"]); + + return ( +
+
+ {type === "LinkInvite" && !emailFromLink && ( +
+ + + {t("Common:Back")} + +
+ )} + + + {t("SignUp")} + +
+ + , + }} + /> + +
+ ); +};