Ghost/ghost/admin/app/templates/components/modals/transfer-owner.hbs

16 lines
570 B
Handlebars
Raw Normal View History

<header class="modal-header">
<h1>Transfer Ownership</h1>
</header>
<a class="close icon-x" href="" title="Close" {{action "closeModal"}}><span class="hidden">Close</span></a>
<div class="modal-body">
<p>
Are you sure you want to transfer the ownership of this blog?
You will not be able to undo this action.
</p>
</div>
<div class="modal-footer">
<button {{action "closeModal"}} class="btn btn-default btn-minor">Cancel</button>
{{#gh-task-button task=transferOwnership class="btn btn-red"}}Yep - I'm sure{{/gh-task-button}}
</div>