2021-09-14 08:18:37 -04:00
|
|
|
script(type="text/ng-template", id="groupPlanModalUpgradeTemplate")
|
|
|
|
.modal-header
|
|
|
|
h3 Save 30% or more with a group license
|
|
|
|
.modal-body.plans
|
|
|
|
.container-fluid
|
|
|
|
.row
|
|
|
|
.col-md-6.text-center
|
|
|
|
.circle.circle-lg
|
2021-10-28 09:00:22 -04:00
|
|
|
| {{ displayPrice.total }}
|
|
|
|
br
|
|
|
|
span.small per year
|
2021-09-14 08:18:37 -04:00
|
|
|
br
|
|
|
|
span.circle-subtext For {{ selected.size }} users
|
|
|
|
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
|
|
|
|
select.form-control(id="plan_code", ng-model="selected.plan_code")
|
|
|
|
option(ng-repeat="plan_code in options.plan_codes", value="{{plan_code.code}}") {{ plan_code.display }}
|
|
|
|
.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')
|
|
|
|
| Usage
|
|
|
|
select.form-control(id="usage", ng-model="selected.usage")
|
|
|
|
option(ng-repeat="usage in options.usages", value="{{usage.code}}") {{ usage.display }}
|
|
|
|
p.small.text-center.row-spaced-small(ng-show="selected.usage == 'educational'")
|
|
|
|
| The 40% educational discount can be used by students or faculty using Overleaf for teaching
|
|
|
|
p.small.text-center.row-spaced-small(ng-show="selected.usage == 'enterprise'")
|
|
|
|
| Save an additional 40% on groups of 10 or more with our educational discount
|
|
|
|
.modal-footer
|
|
|
|
.text-center
|
2021-10-28 09:00:22 -04:00
|
|
|
p(ng-show="displayPrice.includesTax") Total:
|
|
|
|
strong {{ displayPrice.total }}
|
|
|
|
| ({{displayPrice.subtotal}} + {{displayPrice.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
|
|
|
|
|