diff --git a/src/pages-and-resources/live/BBBSettings.jsx b/src/pages-and-resources/live/BBBSettings.jsx
index 27d6b5fc0..1a4f77239 100644
--- a/src/pages-and-resources/live/BBBSettings.jsx
+++ b/src/pages-and-resources/live/BBBSettings.jsx
@@ -88,11 +88,19 @@ function BbbSettings({
) : (
<>
{bbbPlan === bbbPlanTypes.commercial && }
- {bbbPlan === bbbPlanTypes.free
- && (
-
+ {bbbPlan === bbbPlanTypes.free && (
+
{intl.formatMessage(messages.freePlanMessage)}
-
+
+ {intl.formatMessage(messages.privacyPolicy)}
+
+
)}
>
)}
diff --git a/src/pages-and-resources/live/messages.js b/src/pages-and-resources/live/messages.js
index df73476b5..64fa7771f 100644
--- a/src/pages-and-resources/live/messages.js
+++ b/src/pages-and-resources/live/messages.js
@@ -160,9 +160,14 @@ const messages = defineMessages({
freePlanMessage: {
id: 'authoring.live.freePlanMessage',
- defaultMessage: 'The free plan is pre-configured, and no additional configurations are required.',
+ defaultMessage: 'The free plan is pre-configured, and no additional configurations are required. By selecting the free plan, you are agreeing to Blindside Networks',
description: 'Tells user that free plans requires no additional configurations',
},
+ privacyPolicy: {
+ id: 'authoring.live.privacyPolicy',
+ defaultMessage: 'Privacy Policy',
+ description: 'The text of privacy policy hyperlink for free plan',
+ },
});
export default messages;