mirror of
https://github.com/pixelfed/pixelfed.git
synced 2024-11-26 00:03:16 +00:00
Add new account settings view
This commit is contained in:
parent
a57c2290d3
commit
1423e06c05
1 changed files with 31 additions and 0 deletions
31
resources/views/settings/remove/permanent.blade.php
Normal file
31
resources/views/settings/remove/permanent.blade.php
Normal file
|
@ -0,0 +1,31 @@
|
|||
@extends('settings.template')
|
||||
|
||||
@section('section')
|
||||
|
||||
<div class="title">
|
||||
<h3 class="font-weight-bold">Delete Your Account</h3>
|
||||
</div>
|
||||
<hr>
|
||||
<div class="mt-3">
|
||||
<p>Hi <span class="font-weight-bold">{{Auth::user()->username}}</span>,</p>
|
||||
|
||||
<p>We're sorry to hear you'd like to delete your account.</p>
|
||||
|
||||
<p class="pb-1">If you're just looking to take a break, you can always <a href="{{route('settings.remove.temporary')}}">temporarily disable</a> your account instead.</p>
|
||||
|
||||
<p class="">When you press the button below, your photos, comments, likes, friendships and all other data will be removed permanently and will not be recoverable. If you decide to create another Pixelfed account in the future, you cannot sign up with the same username again on this instance.</p>
|
||||
|
||||
<div class="alert alert-danger my-5">
|
||||
<span class="font-weight-bold">Warning:</span> Some remote servers may contain your public data (statuses, avatars, ect) and will not be deleted until federation support is launched.
|
||||
</div>
|
||||
|
||||
<p>
|
||||
<form method="post">
|
||||
@csrf
|
||||
<button class="btn btn-danger font-weight-bold py-0">Permanently delete my account</button>
|
||||
</form>
|
||||
</p>
|
||||
</div>
|
||||
|
||||
|
||||
@endsection
|
Loading…
Reference in a new issue