mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-11-28 22:43:30 +03:00
c9e29d6e9e
closes https://github.com/TryGhost/Team/issues/915 refs https://github.com/TryGhost/Admin/commit/a7bb783d3 - When the disabled email limit is returned we want to have a special header along with the modal copy
21 lines
646 B
Handlebars
21 lines
646 B
Handlebars
|
|
<header class="modal-header" data-test-modal="delete-user">
|
|
<h1>{{headerMessage}}</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>
|
|
{{html-safe upgradeMessage.message}}
|
|
</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> |