mirror of
https://github.com/mattermost/mattermost.git
synced 2025-02-25 18:55:24 -06:00
Fix Terms and Privacy links (#4506)
* Fix Terms and Privacy links github issue https://github.com/mattermost/platform/issues/4156 * fix eslint * revert per request * add missing end blank line
This commit is contained in:
committed by
Christopher Speller
parent
a6d6880d99
commit
ef080a0a10
@@ -429,9 +429,11 @@ export default class SignupEmail extends React.Component {
|
||||
<p>
|
||||
<FormattedHTMLMessage
|
||||
id='create_team.agreement'
|
||||
defaultMessage="By proceeding to create your account and use {siteName}, you agree to our <a href='/static/help/terms.html'>Terms of Service</a> and <a href='/static/help/privacy.html'>Privacy Policy</a>. If you do not agree, you cannot use {siteName}."
|
||||
defaultMessage="By proceeding to create your account and use {siteName}, you agree to our <a href='{TermsOfServiceLink}'>Terms of Service</a> and <a href='{PrivacyPolicyLink}'>Privacy Policy</a>. If you do not agree, you cannot use {siteName}."
|
||||
values={{
|
||||
siteName: global.window.mm_config.SiteName
|
||||
siteName: global.window.mm_config.SiteName,
|
||||
TermsOfServiceLink: global.window.mm_config.TermsOfServiceLink,
|
||||
PrivacyPolicyLink: global.window.mm_config.PrivacyPolicyLink
|
||||
}}
|
||||
/>
|
||||
</p>
|
||||
|
||||
@@ -179,9 +179,11 @@ export default class SignupLdap extends React.Component {
|
||||
<p>
|
||||
<FormattedHTMLMessage
|
||||
id='create_team.agreement'
|
||||
defaultMessage="By proceeding to create your account and use {siteName}, you agree to our <a href='/static/help/terms.html'>Terms of Service</a> and <a href='/static/help/privacy.html'>Privacy Policy</a>. If you do not agree, you cannot use {siteName}."
|
||||
defaultMessage="By proceeding to create your account and use {siteName}, you agree to our <a href='{TermsOfServiceLink}'>Terms of Service</a> and <a href='{PrivacyPolicyLink}'>Privacy Policy</a>. If you do not agree, you cannot use {siteName}."
|
||||
values={{
|
||||
siteName: global.window.mm_config.SiteName
|
||||
siteName: global.window.mm_config.SiteName,
|
||||
TermsOfServiceLink: global.window.mm_config.TermsOfServiceLink,
|
||||
PrivacyPolicyLink: global.window.mm_config.PrivacyPolicyLink
|
||||
}}
|
||||
/>
|
||||
</p>
|
||||
|
||||
Reference in New Issue
Block a user