-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlogout.php
More file actions
29 lines (26 loc) · 868 Bytes
/
Copy pathlogout.php
File metadata and controls
29 lines (26 loc) · 868 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
<?php
session_name("heidi_battleship");
session_start();
$username = $_SESSION["username"] ?? "Player";
session_destroy();
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Logged Out – Battleship</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header class="site-header">
<a href="index.php" class="logo">⚓ Battleship</a>
</header>
<div class="card" style="text-align:center;">
<h2>See you later, <?php echo htmlspecialchars($username); ?>!</h2>
<p style="color:#a0b8d0; margin: 16px 0 24px;">You have been logged out.</p>
<a href="login.php" class="btn btn-primary">Login Again</a>
<p class="form-footer" style="margin-top:16px;">New here? <a href="register.php">Create an account</a></p>
</div>
</body>
</html>