re-arranged user flow to display assignment first, with the optional button to access information from spotify.

This commit is contained in:
Joshua Ashton
2025-02-04 12:34:29 -07:00
parent 1888f11fe5
commit ea1def7409
111 changed files with 12269 additions and 128 deletions
+2 -10
View File
@@ -1,11 +1,3 @@
<?php
session_start();
if (!isset($_GET['code'])) {
header('Location: https://login.joshashton.dev/');
exit;
}
?>
<!DOCTYPE html>
<html lang="en">
@@ -17,9 +9,9 @@ if (!isset($_GET['code'])) {
</head>
<body>
<button id="switcher" onclick=modeSwitch('core')>Core</button>
<a href="explore"><button id="switcher">Spotify Exploration</button></a>
<div id="content">
<?php include ('explore.php'); ?>
<?php include ('core.php'); ?>
</div>
</body>
</html>