mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-01-06 22:40:14 -05:00
🎨 Improved copy on member email unsubscribe page
closes https://github.com/TryGhost/Team/issues/1228 - copy updated to clarify the unsubscribe was for emails only, not full account cancelation - added a link to member account management so members can easily re-subscribe to emails if desired
This commit is contained in:
parent
139a0713a5
commit
c27ad6e6b8
1 changed files with 12 additions and 7 deletions
|
@ -33,16 +33,21 @@
|
|||
</a>
|
||||
</nav>
|
||||
</header>
|
||||
|
||||
|
||||
<div class="gh-flow-content-wrap">
|
||||
<section class="gh-flow-content gh-flow-content-unsubscribe">
|
||||
<p>
|
||||
{{#if error}}
|
||||
{{error}}
|
||||
{{else}}
|
||||
{{#if member}}<span class="gh-flow-em">{{member.email}}</span> has been successfully unsubscribed.{{/if}}
|
||||
{{#if error}}
|
||||
<p>{{error}}</p>
|
||||
{{else}}
|
||||
{{#if member}}
|
||||
<p>
|
||||
<span class="gh-flow-em">{{member.email}}</span> has been successfully unsubscribed from emails.
|
||||
<br>
|
||||
Don't worry, this will not cancel your paid subscription to {{@site.title}}.
|
||||
</p>
|
||||
<p>Didn't mean to do this? Manage your account <a href="{{@site.url}}/#/portal/account">here</a>.</p>
|
||||
{{/if}}
|
||||
</p>
|
||||
{{/if}}
|
||||
</section>
|
||||
</div>
|
||||
</div>
|
||||
|
|
Loading…
Reference in a new issue