Skip to content
Snippets Groups Projects
Commit 29a7eae1 authored by Connor Brock's avatar Connor Brock
Browse files

Presentation

parent 6b7f9181
No related branches found
No related tags found
1 merge request!43Resolve "As a child, I want a very flashy and modern looking webpage that will draw me in and keep me entertained while following the dragons tale trail."
......@@ -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");
......
<!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
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment