diff --git a/webgoat-lessons/cia/src/main/resources/html/CIA.html b/webgoat-lessons/cia/src/main/resources/html/CIA.html index 5bc964274..3caef6e61 100644 --- a/webgoat-lessons/cia/src/main/resources/html/CIA.html +++ b/webgoat-lessons/cia/src/main/resources/html/CIA.html @@ -22,19 +22,21 @@
-
-
-
-
-
- -
+
+
+
+
+
+
+ +
+
+
+
-
-
\ No newline at end of file diff --git a/webgoat-lessons/cia/src/main/resources/js/quiz.js b/webgoat-lessons/cia/src/main/resources/js/quiz.js index f2953165b..32fdaf41b 100644 --- a/webgoat-lessons/cia/src/main/resources/js/quiz.js +++ b/webgoat-lessons/cia/src/main/resources/js/quiz.js @@ -11,7 +11,7 @@ $(function () { let html = ""; jQuery.each(questionsObj, function(i, obj) { jQuery.each(obj, function(j, quest) { - html += "

" + (j+1) + ". " + quest.text + "

"; + html += "

" + (j+1) + ". " + quest.text + "

"; html += "
"; jQuery.each(quest.solutions, function(k, solution) { solution = "Solution " + k + ": " + solution;