user, trim($_POST['qxz_password']))) { User::remove($a->user['uid']); // NOTREACHED } } function removeme_content(App $a) { if (!local_user()) { goaway(System::baseUrl()); } $hash = random_string(); require_once("mod/settings.php"); settings_init($a); $_SESSION['remove_account_verify'] = $hash; $tpl = get_markup_template('removeme.tpl'); $o = replace_macros($tpl, [ '$basedir' => System::baseUrl(), '$hash' => $hash, '$title' => L10n::t('Remove My Account'), '$desc' => L10n::t('This will completely remove your account. Once this has been done it is not recoverable.'), '$passwd' => L10n::t('Please enter your password for verification:'), '$submit' => L10n::t('Remove My Account') ]); return $o; }