mirror of
https://github.com/NNTmux/newznab-tmux.git
synced 2026-08-29 01:08:56 +00:00
16 lines
221 B
PHP
16 lines
221 B
PHP
<?php
|
|
|
|
use App\Models\User;
|
|
|
|
if (! User::isLoggedIn()) {
|
|
$page->show403();
|
|
}
|
|
|
|
$userId = $_GET['id'];
|
|
|
|
if ($userId !== null) {
|
|
User::logout();
|
|
User::deleteUser($userId);
|
|
header('Location: '.WWW_TOP.'/');
|
|
}
|