mirror of
https://github.com/pixelfed/pixelfed.git
synced 2024-11-10 00:34:50 +00:00
commit
52bb40d5ff
1 changed files with 2 additions and 2 deletions
|
@ -27,7 +27,7 @@
|
||||||
|
|
||||||
@include('settings.security.device-panel')
|
@include('settings.security.device-panel')
|
||||||
|
|
||||||
@if(config('pixelfed.account_deletion') && !$user->is_admin && $user->created_at->gt(now()->subHours(12)))
|
@if(config('pixelfed.account_deletion') && !$user->is_admin && $user->created_at->lt(now()->subHours(12)))
|
||||||
<h4 class="font-weight-bold pt-3">Danger Zone</h4>
|
<h4 class="font-weight-bold pt-3">Danger Zone</h4>
|
||||||
<div class="mb-4 border rounded border-danger">
|
<div class="mb-4 border rounded border-danger">
|
||||||
<ul class="list-group mb-0 pb-0">
|
<ul class="list-group mb-0 pb-0">
|
||||||
|
@ -40,7 +40,7 @@
|
||||||
<a class="btn btn-outline-danger font-weight-bold py-1" href="{{route('settings.remove.temporary')}}">Disable</a>
|
<a class="btn btn-outline-danger font-weight-bold py-1" href="{{route('settings.remove.temporary')}}">Disable</a>
|
||||||
</div>
|
</div>
|
||||||
</li>
|
</li>
|
||||||
@if( !$user->is_admin && $user->created_at->gt(now()->subDays(7)) )
|
@if(!$user->is_admin && $user->created_at->lt(now()->subDays(7)) )
|
||||||
<li class="list-group-item border-left-0 border-right-0 py-3 d-flex justify-content-between">
|
<li class="list-group-item border-left-0 border-right-0 py-3 d-flex justify-content-between">
|
||||||
<div>
|
<div>
|
||||||
<p class="font-weight-bold mb-1">Delete this Account</p>
|
<p class="font-weight-bold mb-1">Delete this Account</p>
|
||||||
|
|
Loading…
Reference in a new issue