diff --git a/src/main/java/Team5/SmartTowns/dragonstale/DragonsTaleController.java b/src/main/java/Team5/SmartTowns/dragonstale/DragonsTaleController.java index 01aae702f8574eb9ba18c8fdeccb6c7198ccf28e..5cacd6d363601b95c13e95742455a4096ae2ead1 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 0000000000000000000000000000000000000000..d9e7dab7d1ffcc42f98c709b814ac7c9085d2533 --- /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