mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-20 17:32:15 +03:00
18 lines
709 B
Handlebars
18 lines
709 B
Handlebars
|
<div class="modal-content" data-test-modal="select-role">
|
||
|
<header class="modal-header">
|
||
|
<h1>Change user role</h1>
|
||
|
</header>
|
||
|
<button type="button" class="close" title="Close" {{on "click" @close}}>{{svg-jar "close"}}<span class="hidden">Close</span></button>
|
||
|
|
||
|
<div class="modal-body">
|
||
|
<GhRoleSelection
|
||
|
@selected={{this.role}}
|
||
|
@setRole={{fn (mut this.role)}}
|
||
|
/>
|
||
|
</div>
|
||
|
|
||
|
<div class="modal-footer">
|
||
|
<button class="gh-btn" type="button" {{on "click" @close}}><span>Cancel</span></button>
|
||
|
<button class="gh-btn gh-btn-black" type="button" {{on "click" (fn @close this.role)}}><span>Change role</span></button>
|
||
|
</div>
|
||
|
</div>
|