mirror of
https://github.com/overleaf/overleaf.git
synced 2024-10-31 21:21:03 -04:00
895f52d41a
* Let users upgrade to group plans via subscription dashboard Users on an individual plan don't have a way to upgrade to a group subscription without contacting support. As a temporary measure, we're adding a way to do this by re-using the existing group plan modal from the plans pages, to allow users to configure and upgrade to a group plan directly. This is currently only available for USD, EUR, and GBP - since although we now support other currencies in Recurly, the group plans modal does not yet support them. The user however can not change currency here, their group subscription will be in the same currency as their current individual subscription. The group plan modal has been duplicated rather than extended, to keep this code seperate as it is potentially only a stopgap measure - and we don't want to be untangling the additional logic from the existing modal/template later down the line. GitOrigin-RevId: 10664bd19af2c3870dfe7e19fd0f9c5b7c877cc6
59 lines
2.3 KiB
Text
59 lines
2.3 KiB
Text
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
|
|
| {{ displayPrice }}
|
|
span.small / year
|
|
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
|
|
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
|
|
|