2021-09-14 08:18:37 -04:00
|
|
|
script(type="text/ng-template", id="groupPlanModalUpgradeTemplate")
|
|
|
|
.modal-header
|
2022-01-11 10:08:57 -05:00
|
|
|
h2 Customise your group subscription
|
|
|
|
h3 Save 30% or more
|
|
|
|
.modal-body.plans.group-subscription-modal
|
2021-09-14 08:18:37 -04:00
|
|
|
.container-fluid
|
|
|
|
.row
|
|
|
|
.col-md-6.text-center
|
|
|
|
.circle.circle-lg
|
2022-01-12 04:41:39 -05:00
|
|
|
| {{ recurlyPrice.total }}
|
2022-01-11 10:08:57 -05:00
|
|
|
span.small / year
|
2021-10-28 09:00:22 -04:00
|
|
|
br
|
2022-01-12 04:41:39 -05:00
|
|
|
span.circle-subtext {{perUserDisplayPrice}} per user
|
2021-09-14 08:18:37 -04:00
|
|
|
ul.list-unstyled
|
|
|
|
li Each user will have access to:
|
|
|
|
li
|
|
|
|
li(ng-if="selected.plan_code == 'collaborator'")
|
|
|
|
strong #{translate("collabs_per_proj", {collabcount:10})}
|
|
|
|
li(ng-if="selected.plan_code == 'professional'")
|
|
|
|
strong #{translate("unlimited_collabs")}
|
|
|
|
+features_premium
|
|
|
|
.col-md-6
|
|
|
|
form.form
|
|
|
|
.form-group
|
|
|
|
label(for='plan_code')
|
|
|
|
| Plan
|
2022-01-11 10:08:57 -05:00
|
|
|
label(ng-repeat="plan_code in options.plan_codes" class="group-plan-option")
|
|
|
|
input(type="radio" name="plan_code" ng-model="selected.plan_code" value="{{plan_code.code}}")
|
|
|
|
span {{plan_code.display}}
|
2021-09-14 08:18:37 -04:00
|
|
|
.form-group
|
|
|
|
label(for='size')
|
|
|
|
| Number of users
|
|
|
|
select.form-control(id="size", ng-model="selected.size")
|
|
|
|
option(ng-repeat="size in options.sizes", value="{{size}}") {{ size }}
|
|
|
|
.form-group
|
|
|
|
label(for='currency')
|
|
|
|
| Currency
|
|
|
|
select.form-control(disabled id="currency", ng-model="selected.currency")
|
|
|
|
option(ng-repeat="currency in options.currencies", value="{{currency.code}}") {{ currency.display }}
|
|
|
|
.form-group
|
|
|
|
label(for='usage')
|
2022-01-11 10:08:57 -05:00
|
|
|
| Overleaf offers a 40% educational discount for groups of 10 or more.
|
|
|
|
label.group-plan-option
|
|
|
|
input(id="usage", type="checkbox" ng-model="selected.usage" ng-true-value="'educational'" ng-false-value="'enterprise'")
|
|
|
|
span This license is for educational purposes (applies to students or faculty using Overleaf for teaching)
|
|
|
|
.row
|
|
|
|
.col-md-12.text-center
|
|
|
|
.educational-discount-badge
|
|
|
|
div(ng-hide="selected.usage !== 'educational'")
|
|
|
|
p.applied(ng-show="discountEligible")
|
|
|
|
| 40% educational discount applied!
|
|
|
|
p.ineligible(ng-hide="discountEligible")
|
|
|
|
| The educational discount is available for groups of 10 or more
|
2021-09-14 08:18:37 -04:00
|
|
|
.modal-footer
|
|
|
|
.text-center
|
2022-01-12 04:41:39 -05:00
|
|
|
p(ng-show="recurlyPrice.includesTax") Total:
|
|
|
|
strong {{ recurlyPrice.total }}
|
|
|
|
| ({{recurlyPrice.subtotal}} + {{recurlyPrice.tax}} tax) per year
|
2021-09-14 08:18:37 -04:00
|
|
|
p
|
|
|
|
strong Your new subscription will be billed immediately to your current payment method.
|
|
|
|
hr.thin
|
|
|
|
button.btn.btn-primary.btn-lg(ng-disabled='inflight' ng-click="upgrade()") Upgrade Now
|
|
|
|
hr.thin
|
|
|
|
a(
|
|
|
|
href
|
|
|
|
ng-controller="ContactGeneralModal"
|
|
|
|
ng-click="openModal()"
|
|
|
|
) Need more than 50 licenses? Please get in touch
|
|
|
|
|