Merge pull request #2744 from overleaf/pr-add-visa-notice-tos

Add ToS link for new Visa free trial rules in the subscription form.

GitOrigin-RevId: 607f1057cee40b61b7910cb2afc1648dacfe49b6
This commit is contained in:
Eric Mc Sween 2020-04-16 08:01:49 -04:00 committed by Copybot
parent d063ab2bc5
commit 5c6ddfd53a
2 changed files with 25 additions and 0 deletions

View file

@ -214,6 +214,16 @@ block content
| {{ monthlyBilling ? '#{translate("upgrade_cc_btn")}' : '#{translate("upgrade_now")}'}}
span(ng-if="paymentMethod.value !== 'credit_card'") #{translate("upgrade_paypal_btn")}
p.tos-agreement-notice
| By subscribing, you agree to our
|
a(
href="/legal#Terms"
target="_blank"
rel="noopener noreferrer"
) terms of service
| .
div.three-d-secure-container.card.card-highlighted.card-border(ng-show="threeDSecureFlow")
.alert.alert-info.small(aria-live="assertive")
strong #{translate('card_must_be_authenticated_by_3dsecure')}

View file

@ -128,3 +128,18 @@
.grecaptcha-badge {
display: none;
}
.tos-agreement-notice {
text-align: center;
margin-top: (@line-height-computed / 4);
margin-bottom: 0;
font-size: @font-size-small;
&.tos-agreement-notice-homepage {
margin-top: (@line-height-computed / 2);
color: #fff;
& > a {
color: #fff;
text-decoration: underline;
}
}
}