51 lines
1.5 KiB
PHP
51 lines
1.5 KiB
PHP
<?php
|
|
session_start();
|
|
|
|
// Check if user is logged in
|
|
if (!isset($_SESSION['user_id'])) {
|
|
header("Location: register.php");
|
|
exit();
|
|
}
|
|
?>
|
|
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
<title>Game Complete - Studio RIT</title>
|
|
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css" rel="stylesheet">
|
|
<link rel="stylesheet" href="assets/css/custom.css?v=<?php echo time(); ?>">
|
|
<style>
|
|
.popup-container {
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
background: rgba(0,0,0,0.7);
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
.popup-content {
|
|
background: #1a1a1a;
|
|
padding: 40px;
|
|
border-radius: 10px;
|
|
text-align: center;
|
|
max-width: 500px;
|
|
border: 1px solid #00A8FF;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="popup-container">
|
|
<div class="popup-content">
|
|
<h2 class="mb-3">Congratulations!</h2>
|
|
<p class="mb-4">You have completed all the levels. You are a true RITian!</p>
|
|
<a href="/" class="btn btn-primary">Back to Home</a>
|
|
</div>
|
|
</div>
|
|
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/js/bootstrap.bundle.min.js"></script>
|
|
</body>
|
|
</html>
|