Remove unused templates

Signed-off-by: Georg Pfuetzenreuter <mail@georg-pfuetzenreuter.net>
This commit is contained in:
Georg Pfuetzenreuter 2022-05-08 05:13:22 +02:00
parent 486d683cd0
commit 00021a5785
Signed by: Georg
GPG Key ID: 1ED2F138E7E6FF57
3 changed files with 1 additions and 38 deletions

View File

@ -47,7 +47,7 @@ public class WebApplication {
@GetMapping("/")
public String index() {
return "external";
return "portal";
}

View File

@ -1,22 +0,0 @@
<!DOCTYPE html>
<html xmlns:th="http://www.thymeleaf.org">
<head th:include="layout :: headerFragment">
</head>
<body>
<div class="container">
<div class="jumbotron text-center">
<h1>Welcome ...</h1>
</div>
<div>
<h2>Existing Users</h2>
<div class="well">
<b>Enter the intranet: </b><a th:href="@{/portal}">Portal</a>
</div>
</div>
<!--div id="pagefoot" th:include="layout :: footerFragment">Footer</div-->
</div>
<!-- container -->
</body>
</html>

View File

@ -1,15 +0,0 @@
<!DOCTYPE html>
<html xmlns:th="http://www.thymeleaf.org">
<head th:include="layout :: headerFragment">
</head>
<body>
<div id="container">
<h1>
Hello, <span th:text="${username}">--name--</span>.
</h1>
<h3>
Your Date of Birth as per our records is <span th:text="${dob}" />.
</h3>
</div>
</body>
</html>