mirror of
https://github.com/overleaf/overleaf.git
synced 2024-10-31 21:21:03 -04:00
54 lines
1.8 KiB
Text
54 lines
1.8 KiB
Text
extends ../../layout
|
|
|
|
block scripts
|
|
script(type='text/javascript').
|
|
window.group_subscription_id = '#{group_subscription_id}'
|
|
window.has_personal_subscription = #{has_personal_subscription}
|
|
|
|
block content
|
|
.content.content-alt
|
|
.container
|
|
.row
|
|
.col-md-8.col-md-offset-2
|
|
-if (query.expired)
|
|
.alert.alert-warning #{translate("email_link_expired")}
|
|
|
|
.row
|
|
div
|
|
.row
|
|
.col-md-8.col-md-offset-2(ng-cloak)
|
|
.card(ng-controller="GroupSubscriptionInviteController")
|
|
.page-header
|
|
h1.text-centered #{translate("you_are_invited_to_group", {groupName:licenceName})}
|
|
|
|
div(ng-show="view =='personalSubscription'").row.text-centered
|
|
div #{translate("cancel_personal_subscription_first")}
|
|
.row
|
|
.col-md-12
|
|
.row
|
|
.col-md-12
|
|
a.btn.btn.btn-default(ng-click="keepPersonalSubscription()", ng-disabled="inflight") #{translate("not_now")}
|
|
span
|
|
a.btn.btn.btn-primary(ng-click="cancelSubscription()", ng-disabled="inflight") #{translate("cancel_your_subscription")}
|
|
|
|
div(ng-show="view =='groupSubscriptionInvite'").row.text-centered
|
|
.row
|
|
.col-md-12 #{translate("group_provides_you_with_premium_account", {groupName:licenceName})}
|
|
.row
|
|
.col-md-12
|
|
.row
|
|
.col-md-12
|
|
.text-center
|
|
a.btn.btn-default(href="/project") #{translate("not_now")}
|
|
span
|
|
a.btn.btn.btn-primary(ng-click="joinGroup()", ng-disabled="inflight") #{translate("verify_email_address")}
|
|
|
|
|
|
span(ng-show="view =='requestSent'").row.text-centered.text-center
|
|
.row
|
|
.col-md-12 #{translate("check_email_to_complete_the_upgrade")}
|
|
.row
|
|
.col-md-12
|
|
.row
|
|
.col-md-12
|
|
a.btn.btn.btn-primary(href="/project") #{translate("done")}
|