0
Fork 0
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:
Kevin Ansfield 2022-01-05 15:27:13 +00:00
parent 139a0713a5
commit c27ad6e6b8

View file

@ -33,16 +33,21 @@
</a> </a>
</nav> </nav>
</header> </header>
<div class="gh-flow-content-wrap"> <div class="gh-flow-content-wrap">
<section class="gh-flow-content gh-flow-content-unsubscribe"> <section class="gh-flow-content gh-flow-content-unsubscribe">
<p> {{#if error}}
{{#if error}} <p>{{error}}</p>
{{error}} {{else}}
{{else}} {{#if member}}
{{#if member}}<span class="gh-flow-em">{{member.email}}</span> has been successfully unsubscribed.{{/if}} <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}} {{/if}}
</p> {{/if}}
</section> </section>
</div> </div>
</div> </div>