mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-11-29 15:12:58 +03:00
21 lines
807 B
Handlebars
21 lines
807 B
Handlebars
|
|
||
|
<header class="modal-header" data-test-modal="delete-user">
|
||
|
<h1>Upgrade your plan to continue</h1>
|
||
|
</header>
|
||
|
<button class="close" title="Close" {{on "click" this.closeModal}}>{{svg-jar "close"}}<span class="hidden">Close</span></button>
|
||
|
|
||
|
<div class="modal-body">
|
||
|
<p>
|
||
|
Your current plan allows you to send posts by email to up to <strong>{{upgradeMessage.limit}}</strong> members, but you currently have <strong>{{upgradeMessage.total}}</strong> members.
|
||
|
</p>
|
||
|
</div>
|
||
|
|
||
|
<div class="modal-footer">
|
||
|
<button {{on "click" this.closeModal}} class="gh-btn" data-test-button="cancel-upgrade">
|
||
|
<span>Cancel</span>
|
||
|
</button>
|
||
|
|
||
|
<button {{on "click" (action "upgrade")}} class="gh-btn gh-btn-green" data-test-button="upgrade-plan">
|
||
|
<span>Upgrade</span>
|
||
|
</button>
|
||
|
</div>
|