mirror of
https://github.com/pixelfed/pixelfed.git
synced 2024-11-09 16:24:51 +00:00
Add temporary account disable view
This commit is contained in:
parent
063fd8a7f4
commit
e048a03d6b
1 changed files with 30 additions and 0 deletions
30
resources/views/settings/remove/temporary.blade.php
Normal file
30
resources/views/settings/remove/temporary.blade.php
Normal file
|
@ -0,0 +1,30 @@
|
|||
@extends('settings.template')
|
||||
|
||||
@section('section')
|
||||
|
||||
<div class="title">
|
||||
<h3 class="font-weight-bold">Temporarily Disable Your Account</h3>
|
||||
</div>
|
||||
<hr>
|
||||
<div class="mt-3">
|
||||
<p>Hi <span class="font-weight-bold">{{Auth::user()->username}}</span>,</p>
|
||||
|
||||
<p>You can disable your account instead of deleting it. This means your account will be hidden until you reactivate it by logging back in.</p>
|
||||
|
||||
<p class="pb-1">You can only disable your account once a week.</p>
|
||||
|
||||
<p class="font-weight-bold">Keeping Your Data Safe</p>
|
||||
<p class="pb-3">Nothing is more important to us than the safety and security of this community. People put their trust in us by sharing moments of their lives on Pixelfed. So we will never make any compromises when it comes to safeguarding your data.</p>
|
||||
|
||||
<p class="pb-2">When you press the button below, your photos, comments and likes will be hidden until you reactivate your account by logging back in.</p>
|
||||
|
||||
<p>
|
||||
<form method="post">
|
||||
@csrf
|
||||
<button type="submit" class="btn btn-primary font-weight-bold py-0">Temporarily Disable Account</button>
|
||||
</form>
|
||||
</p>
|
||||
</div>
|
||||
|
||||
|
||||
@endsection
|
Loading…
Reference in a new issue