diff --git a/apps/scandic-web/components/HotelReservation/MyStay/Ancillaries/AddAncillaryFlow/AddAncillaryFlowModal/Steps/ConfirmationStep/confirmationStep.module.css b/apps/scandic-web/components/HotelReservation/MyStay/Ancillaries/AddAncillaryFlow/AddAncillaryFlowModal/Steps/ConfirmationStep/confirmationStep.module.css index 6c922c139..2716334e3 100644 --- a/apps/scandic-web/components/HotelReservation/MyStay/Ancillaries/AddAncillaryFlow/AddAncillaryFlowModal/Steps/ConfirmationStep/confirmationStep.module.css +++ b/apps/scandic-web/components/HotelReservation/MyStay/Ancillaries/AddAncillaryFlow/AddAncillaryFlowModal/Steps/ConfirmationStep/confirmationStep.module.css @@ -5,6 +5,7 @@ } .termsAndConditions { - display: flex; - gap: var(--Space-x1); + display: grid; + gap: var(--Space-x2); + color: var(--Text-Secondary); } diff --git a/apps/scandic-web/components/HotelReservation/MyStay/Ancillaries/AddAncillaryFlow/AddAncillaryFlowModal/Steps/ConfirmationStep/index.tsx b/apps/scandic-web/components/HotelReservation/MyStay/Ancillaries/AddAncillaryFlow/AddAncillaryFlowModal/Steps/ConfirmationStep/index.tsx index a0179f347..4d5eecb1d 100644 --- a/apps/scandic-web/components/HotelReservation/MyStay/Ancillaries/AddAncillaryFlow/AddAncillaryFlowModal/Steps/ConfirmationStep/index.tsx +++ b/apps/scandic-web/components/HotelReservation/MyStay/Ancillaries/AddAncillaryFlow/AddAncillaryFlowModal/Steps/ConfirmationStep/index.tsx @@ -97,43 +97,48 @@ export default function ConfirmationStep({ )}
+ +

+ {intl.formatMessage( + { + id: "Yes, I accept the general Terms & Conditions, and understand that Scandic will process my personal data in accordance with Scandic's Privacy policy. There you can learn more about what data we process, your rights and where to turn if you have questions.", + }, + { + termsAndConditionsLink: (str) => ( + + {str} + + ), + privacyPolicyLink: (str) => ( + + {str} + + ), + } + )} +

+
-

- {intl.formatMessage( - { - id: "Yes, I accept the general Terms & Conditions, and understand that Scandic will process my personal data in accordance with Scandic's Privacy policy. There you can learn more about what data we process, your rights and where to turn if you have questions.", - }, - { - termsAndConditionsLink: (str) => ( - - - {str} - - - ), - privacyPolicyLink: (str) => ( - - - {str} - - - ), - } - )} -

+ + {intl.formatMessage({ + id: "I accept the terms and conditions", + })} +
diff --git a/apps/scandic-web/components/HotelReservation/MyStay/GuaranteeLateArrival/guaranteeLateArrival.module.css b/apps/scandic-web/components/HotelReservation/MyStay/GuaranteeLateArrival/guaranteeLateArrival.module.css index 224f06fa9..ec20a477a 100644 --- a/apps/scandic-web/components/HotelReservation/MyStay/GuaranteeLateArrival/guaranteeLateArrival.module.css +++ b/apps/scandic-web/components/HotelReservation/MyStay/GuaranteeLateArrival/guaranteeLateArrival.module.css @@ -30,8 +30,9 @@ } .termsAndConditions { - display: flex; + display: grid; gap: var(--Spacing-x2); + color: var(--Text-Secondary); } .section { diff --git a/apps/scandic-web/components/HotelReservation/MyStay/GuaranteeLateArrival/index.tsx b/apps/scandic-web/components/HotelReservation/MyStay/GuaranteeLateArrival/index.tsx index 503c64f05..385762fde 100644 --- a/apps/scandic-web/components/HotelReservation/MyStay/GuaranteeLateArrival/index.tsx +++ b/apps/scandic-web/components/HotelReservation/MyStay/GuaranteeLateArrival/index.tsx @@ -5,6 +5,8 @@ import { useRouter } from "next/navigation" import { FormProvider, useForm } from "react-hook-form" import { useIntl } from "react-intl" +import { Typography } from "@scandic-hotels/design-system/Typography" + import { PaymentMethodEnum } from "@/constants/booking" import { bookingTermsAndConditions, @@ -142,8 +144,8 @@ export default function GuaranteeLateArrival({ label={intl.formatMessage({ id: "Credit card" })} />
- - + +

{intl.formatMessage( { id: "By guaranteeing with any of the payment methods available, I accept the terms for this stay and the general Terms & Conditions, and understand Scandic will process my personal data for this stay in accordance with Scandic’s Privacy Policy. I accept Scandic requiring a valid credit card during my visit in case anything is left unpaid.", @@ -152,8 +154,9 @@ export default function GuaranteeLateArrival({ termsAndConditionsLink: (str) => ( {str} @@ -161,15 +164,25 @@ export default function GuaranteeLateArrival({ privacyPolicyLink: (str) => ( {str} ), } )} - +

+
+ + + + {intl.formatMessage({ + id: "I accept the terms and conditions", + })} + +