Files
cs2440/music/index.php
T
2025-02-02 19:56:52 +00:00

26 lines
512 B
PHP

<?php
session_start();
if (!isset($_GET['code'])) {
header('Location: https://login.joshashton.dev/');
exit;
}
?>
<!DOCTYPE html>
<html lang="en">
<head>
<title>Favorite Albums</title>
<link rel="stylesheet" href="css/styles.css" type="text/css">
<script src="js/switch.js"></script>
</head>
<body>
<h1>My Favorite Albums</h1>
<button id="switcher" onclick=modeSwitch('core')>Explore</button>
<div id="content">
<?php include ('explore.php'); ?>
</div>
</body>
</html>