diff --git a/src/web/callback.html b/src/web/callback.html
index ca458f1..760d9d2 100644
--- a/src/web/callback.html
+++ b/src/web/callback.html
@@ -1,82 +1,58 @@
-
-
-
- Spotify Authorization Callback
-
-
-
-
-
🎵 Spotify Authorization
-
-
-
Username:
-
Current URL:
-
Page Loaded:
-
-
-
-
-
-
-
+
+
+
+ Spotify Authorization Callback
+
+
+
+
+
🎵 Spotify Authorization
+
+
+
+
+
+
diff --git a/src/web/callbackScript.js b/src/web/callbackScript.js
index 69373e0..a1cd28d 100644
--- a/src/web/callbackScript.js
+++ b/src/web/callbackScript.js
@@ -1,7 +1,3 @@
-// Display debug info
-document.getElementById('current-url').textContent = window.location.href;
-document.getElementById('load-time').textContent = new Date().toLocaleString();
-
// Extract and display the state parameter, and verify it matches the original
window.addEventListener('load', function () {
const urlParams = new URLSearchParams(window.location.search);
diff --git a/src/web/index.html b/src/web/index.html
index 3576250..05c25cd 100644
--- a/src/web/index.html
+++ b/src/web/index.html
@@ -95,12 +95,6 @@ Create Playlist
-
-
-
Debug Info
-
Current URL:
-
Page loaded:
-
diff --git a/src/web/script.js b/src/web/script.js
index 4183aa9..834e613 100644
--- a/src/web/script.js
+++ b/src/web/script.js
@@ -4,10 +4,6 @@ const CONFIG = {
SPOTIFY_SCOPES: 'playlist-modify-private'
};
-// Debug info
-document.getElementById('current-url').textContent = window.location.href;
-document.getElementById('load-time').textContent = new Date().toLocaleString();
-
// Generate random string on page load
const state = crypto.randomUUID();
sessionStorage.setItem('state', state);