3DSTownSquare/3ds/acc/delete.php
HotPizzaYT 4dff2720ba Hi!
2022-04-24 13:57:02 -05:00

14 lines
478 B
PHP

<?php
session_start();
if(isset($_SESSION["username"]) && isset($_SESSION["email"])){
?>
<title>Deleting your account</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<h1>Deleting your account</h1>
<p>Are you sure you want to delete account "<?php echo $_SESSION["username"]; ?>" with email "<?php echo $_SESSION["email"] ?>"?</p>
<p><a href="reallyDelete.php">Yes</a> - <a href="acc.php">No</a>
<?php
} else {
header("Location: index.php");
} ?>