Add files via upload

This commit is contained in:
adrireal 2021-05-11 13:14:55 +02:00 committed by GitHub
parent 4449f48e83
commit 1bf79d9093
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 11 additions and 3 deletions

View File

@ -72,9 +72,17 @@
//Delete user account.
static function delete(){
return $reply = '<div class="code info">
<h2>Aquí el formulario para eliminar cuenta</h2><hr />
</div>'."\n";
require_once('./includes/formDeleteAccount.php');
$formDA = new FormDeleteAccount();
$htmlFormDeleteAccount = $formDA->gestiona();
return $reply = '<!-- Delete user account -->
<div class="column middle">
<h2>Eliminar usuario</h2>
'.$htmlFormDeleteAccount.'
</div>'."\n";
}
}
?>