From 2c8cdf5fb56f0f529a4f39b09eddd96075c03449 Mon Sep 17 00:00:00 2001 From: Ross Date: Mon, 2 Aug 2021 10:50:34 +0100 Subject: [PATCH] . --- index.html | 1 + js/main.js | 6 ++++++ 2 files changed, 7 insertions(+) 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) => {