diff --git a/src/main/resources/templates/fragments/common.html b/src/main/resources/templates/fragments/common.html
index 291b75e8..f790f6c6 100644
--- a/src/main/resources/templates/fragments/common.html
+++ b/src/main/resources/templates/fragments/common.html
@@ -81,19 +81,19 @@
// Find the file input within the form
var fileInput = $('input[type="file"]');
-
+
// Find the closest enclosing form of the file input
var form = fileInput.closest('form');
-
+
// Find the submit button within the form
var submitButton = form.find('button[type="submit"], input[type="submit"]');
-
+
const boredWaitingText = /*[[#{bored}]]*/ 'Bored Waiting?';
const downloadCompleteText = /*[[#{downloadComplete}]]*/ 'Download Complete';
window.downloadCompleteText = downloadCompleteText;
// Create the 'show-game-btn' button
var gameButton = $('
');
-
+
// Insert the 'show-game-btn' just above the submit button
submitButton.before(gameButton);
@@ -147,14 +147,14 @@