mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-11-28 14:03:48 +03:00
74d66ca9be
no issue - selectors hadn't been updated when copy/pasting modal contents
21 lines
705 B
Handlebars
21 lines
705 B
Handlebars
|
|
<header class="modal-header" data-test-modal="upgrade-host-limit">
|
|
<h1>{{this.headerMessage}}</h1>
|
|
</header>
|
|
<button class="close" title="Close" type="button" {{on "click" this.closeModal}}>{{svg-jar "close"}}<span class="hidden">Close</span></button>
|
|
|
|
<div class="modal-body">
|
|
<p>
|
|
{{html-safe this.upgradeMessage.message}}
|
|
</p>
|
|
</div>
|
|
|
|
<div class="modal-footer">
|
|
<button class="gh-btn" data-test-button="cancel-upgrade" type="button" {{on "click" this.closeModal}}>
|
|
<span>Cancel</span>
|
|
</button>
|
|
|
|
<button class="gh-btn gh-btn-green" data-test-button="upgrade-plan" type="button" {{on "click" (action "upgrade")}}>
|
|
<span>Upgrade</span>
|
|
</button>
|
|
</div> |