website/web/templates/errors/disabled_account.html
Noah Petherbridge 481bd0ae61 Deactivate Account; Friends Lists on Profiles
* Add a way for users to temporarily deactivate their accounts, in a
  recoverable way should they decide to return later.
* A deactivated account may log in but have limited options: to
  reactivate their account, permanently delete it, or log out.
* Fix several bugs around the display of comments, messages and
  forum threads for disabled, banned, or blocked users:
  * Messages (inbox and sentbox) will be hidden and the unread indicator
    will not count unread messages the user can't access.
  * Comments on photos and forum posts are hidden, and top-level threads
    on the "Newest" tab will show "[unavailable]" for their text and
    username.
  * Your historical notifications will hide users who are blocked, banned
    or disabled.
* Add a "Friends" tab to user profile pages, to see other users' friends.
  * The page is Certification Required so non-cert users can't easily
    discover any members on the site.
2023-10-22 15:02:24 -07:00

58 lines
2.0 KiB
HTML

{{define "title"}}Reactivate Your Account{{end}}
{{define "content"}}
<div class="container">
<section class="hero block is-link is-bold">
<div class="hero-body">
<div class="container">
<h1 class="title">Welcome back!</h1>
<h2 class="subtitle">Reactivate your account?</h2>
</div>
</div>
</section>
<div class="block content p-4 mb-0">
<h1>Your account is currently deactivated</h1>
<p>
Welcome back to {{PrettyTitle}}! You had requested to deactivate your account before, and you must make
a decision as to how you want to proceed from here.
</p>
<h2>Reactivate Your Account?</h2>
<p>
If you wish to pick up where you left off, you may <strong>reactivate your account</strong> by clicking
on the button below. It will be as if you never left: your profile, photo gallery, friends, messages and
notifications will all be how you left them.
</p>
<p>
<a href="/account/reactivate" class="button is-success">Reactivate My Account</a>
</p>
<h2>Permanently Delete Your Account?</h2>
<p>
If you've decided you really <em>don't</em> want to have a {{PrettyTitle}} account anymore, you may
click the button below to <strong>permanently delete your account</strong> instead. We will delete your
profile, photos, and all the associated data we have about your account. This will be an irreversible
process!
</p>
<p>
<a href="/account/delete" class="button is-danger">Permanently Delete My Account</a>
</p>
<h2>Log Out</h2>
<p>
If you're not sure what to do, you may log out of your account and come back later.
</p>
<p>
<a href="/account/logout" class="button is-info">Log out of my account</a>
</p>
</div>
</div>
{{end}}