mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-17 05:21:36 +03:00
19 lines
770 B
Handlebars
19 lines
770 B
Handlebars
|
<div class="modal-content">
|
||
|
<header class="modal-header" data-test-modal="unsaved-settings">
|
||
|
<h1>Are you sure you want to leave this page?</h1>
|
||
|
</header>
|
||
|
<a class="close" href="" role="button" title="Close" {{on "click" @close}}>{{svg-jar "close"}}<span class="hidden">Close</span></a>
|
||
|
|
||
|
<div class="modal-body">
|
||
|
<p>
|
||
|
Hey there! It looks like you didn't save the changes you made.
|
||
|
</p>
|
||
|
|
||
|
<p>Save before you go!</p>
|
||
|
</div>
|
||
|
|
||
|
<div class="modal-footer">
|
||
|
<button {{on "click" (fn @close false)}} class="gh-btn" data-test-stay-button><span>Stay</span></button>
|
||
|
<button {{on "click" (fn @close true)}} class="gh-btn gh-btn-red" data-test-leave-button><span>Leave</span></button>
|
||
|
</div>
|
||
|
</div>
|