From 29a7eae117e31430d507005f7cc92f41c428ff82 Mon Sep 17 00:00:00 2001
From: Connor <brockcc1@cardiff.ac.uk>
Date: Thu, 14 Dec 2023 13:47:33 +0000
Subject: [PATCH] Presentation

---
 .../dragonstale/DragonsTaleController.java    |  7 +++++++
 .../dragonstale/landmarkonedone.html          | 20 +++++++++++++++++++
 2 files changed, 27 insertions(+)
 create mode 100644 src/main/resources/templates/dragonstale/landmarkonedone.html

diff --git a/src/main/java/Team5/SmartTowns/dragonstale/DragonsTaleController.java b/src/main/java/Team5/SmartTowns/dragonstale/DragonsTaleController.java
index 01aae702..5cacd6d3 100644
--- a/src/main/java/Team5/SmartTowns/dragonstale/DragonsTaleController.java
+++ b/src/main/java/Team5/SmartTowns/dragonstale/DragonsTaleController.java
@@ -35,6 +35,13 @@ public class DragonsTaleController {
         return modelAndView;
     }
 
+    // Placeholder until thorough controller is inputted.
+    @GetMapping("/dragonstale/landmarkonedone")
+    public ModelAndView getLa(){
+        modelAndView = new ModelAndView("/dragonstale/landmarkonedone");
+        return modelAndView;
+    }
+
     @GetMapping ("/QRScan") //In here, we could use trailID as a string variable and use it to track what trail the user clicked from.
     public ModelAndView getQRScanner(){
         modelAndView = new ModelAndView("fragments/qr-scanner");
diff --git a/src/main/resources/templates/dragonstale/landmarkonedone.html b/src/main/resources/templates/dragonstale/landmarkonedone.html
new file mode 100644
index 00000000..d9e7dab7
--- /dev/null
+++ b/src/main/resources/templates/dragonstale/landmarkonedone.html
@@ -0,0 +1,20 @@
+<!DOCTYPE html>
+<html lang="en">
+<head>
+    <meta charset="UTF-8">
+    <title>Landmark one Complete!</title>
+    <link rel="stylesheet" th:href="@{css/dragonstaless.css}">
+    <link rel="stylesheet" th:href="@{css/mobile-style.css}">
+    <script type="text/javascript" th:src="@{/scripts/DTscript.js}"></script>
+</head>
+<body>
+  <main>
+    <header th:insert="~{/fragments/banners.html::header}"></header>
+    <h1>Well done! You have completed the first landmark of dragons trail.
+    </h1>
+    <img th:src="@{/images/dragonstale/dtlm2.png}" alt="Image of a dragon" class="images">
+    <p> As I ventured deep into the mysterious cave, the air grew thick with anticipation. Amidst the shadows, a shimmering glint caught my eye, revealing the majestic scales of a slumbering dragon. Its enormous form lay curled protectively around a hoard of ancient treasures, and the cavern echoed with the rhythmic pulse of its slow, steady breaths. I stood in awe, torn between the thrill of discovery and the primal fear that gripped my heart in the presence of such a mythical beast.</p>
+    <footer th:insert="~{/fragments/banners.html::footer}"></footer>
+  </main>
+</body>
+</html>
\ No newline at end of file
-- 
GitLab