mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-26 12:21:36 +03:00
ac67475605
refs https://github.com/TryGhost/Team/issues/1734 refs https://github.com/TryGhost/Team/issues/559 refs https://github.com/TryGhost/Ghost/issues/14101 - switches to newer modal patterns ready for later Ember upgrades
37 lines
1.7 KiB
Handlebars
37 lines
1.7 KiB
Handlebars
<div class="modal-content" data-test-modal="delete-member">
|
||
<header class="modal-header">
|
||
<h1>Delete member account</h1>
|
||
</header>
|
||
<button type="button" class="close" title="Close" {{on "click" (fn @close false)}}>{{svg-jar "close"}}<span class="hidden">Close</span></button>
|
||
|
||
<div class="modal-body">
|
||
<p class="mb6">
|
||
Permanently delete <strong>{{@data.member.email}}</strong> from Ghost.
|
||
</p>
|
||
|
||
{{#if this.hasActiveStripeSubscriptions}}
|
||
<div class="flex justify-between">
|
||
<div class="form-group for-checkbox gh-member-cancelstripe-checkbox">
|
||
<label class="checkbox">
|
||
<input
|
||
class="gh-input"
|
||
type="checkbox"
|
||
checked={{this.shouldCancelSubscriptions}}
|
||
{{on "click" (toggle "toggleShouldCancelSubscriptions" this)}}
|
||
/>
|
||
<span class="input-toggle-component"></span>
|
||
<div>
|
||
<h4>Also cancel subscription in Stripe</h4>
|
||
<p>If disabled, the member’s premium subscription will continue</p>
|
||
</div>
|
||
</label>
|
||
</div>
|
||
</div>
|
||
{{/if}}
|
||
</div>
|
||
|
||
<div class="modal-footer">
|
||
<button class="gh-btn" type="button" {{on "click" (fn @close false)}}><span>Cancel</span></button>
|
||
<GhTaskButton @buttonText={{if this.shouldCancelSubscriptions "Delete member + Cancel subscription" "Delete member"}} @successText="Deleted" @task={{this.deleteMemberTask}} @class="gh-btn gh-btn-red gh-btn-icon" />
|
||
</div>
|
||
</div> |