mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-11-28 22:43:30 +03:00
21 lines
758 B
Handlebars
21 lines
758 B
Handlebars
<header class="modal-header">
|
|
<h1>Regenerate your Staff Access Token</h1>
|
|
</header>
|
|
<a class="close" href="" role="button" title="Close" {{action "closeModal"}}>{{svg-jar "close"}}<span class="hidden">Close</span></a>
|
|
|
|
<div class="modal-body">
|
|
<p>
|
|
You can regenerate your Staff Access Token any time, but any scripts or applications using it will need to be updated.
|
|
</p>
|
|
{{#if this.errorMessage}}
|
|
<p class='red'> {{this.errorMessage}}</p>
|
|
{{/if}}
|
|
</div>
|
|
|
|
<div class="modal-footer">
|
|
<button {{action "closeModal"}} class="gh-btn" autofocus><span>Cancel</span></button>
|
|
<button class="gh-btn gh-btn-icon gh-btn-red" {{action "confirm"}}>
|
|
<span>Regenerate your Staff Access Token</span>
|
|
</button>
|
|
</div>
|