diff --git a/index.html b/index.html
index 8ee7df7..5ddf58c 100644
--- a/index.html
+++ b/index.html
@@ -64,6 +64,7 @@
RTS
+
Available Packets (click to load):
diff --git a/js/main.js b/js/main.js
index 8f29e68..ce09307 100644
--- a/js/main.js
+++ b/js/main.js
@@ -146,6 +146,12 @@ async function loadExamList(data) {
$("#database-error").show();
});
+ //Display user info if it exists
+ if (data.hasOwnProperty("user") && data.user) {
+ $("#user").append(data.user);
+ }
+
+
let exams_started = [];
let exams_completed = [];
sessions.forEach((s) => {