Login:Components:CreateUserForm: change styles and move GreetingUserContainer

This commit is contained in:
Darya Umrikhina 2024-07-23 01:48:07 +04:00
parent 8d90e90c95
commit b6907f69a7
2 changed files with 91 additions and 2 deletions

View File

@ -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;

View File

@ -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 (
<div className="greeting-user-container">
<div className="back-sign-in-container">
{type === "LinkInvite" && !emailFromLink && (
<div className="back-button">
<IconButton size={16} iconName={ArrowIcon} onClick={onClickBack} />
<Text fontWeight={600} onClick={onClickBack}>
{t("Common:Back")}
</Text>
</div>
)}
<Text fontWeight={600} fontSize={"16px"}>
{t("SignUp")}
</Text>
</div>
<Text>
<Trans
t={t}
i18nKey="AccountWillBeCreated"
ns="Confirm"
defaults={DEFAULT_CREATION_TEXT}
values={{
email,
}}
portalName={PRODUCT_NAME}
components={{
1: <ColorTheme themeId={ThemeId.Link} isHovered={false} />,
}}
/>
</Text>
</div>
);
};