diff options
author | Georg Pfuetzenreuter | 2022-05-08 05:13:22 +0200 |
---|---|---|
committer | Georg Pfuetzenreuter | 2022-05-08 05:13:22 +0200 |
commit | 00021a5785722be3433c3aa79d838ebd4f2ffa52 (patch) | |
tree | 8e461683c36a8e4db185c72d84aa8ae6973c21a0 /src/main/resources | |
parent | 486d683cd072aa18cc6b68785d47d77bd9ae4bdb (diff) | |
download | pubsh-web-00021a5785722be3433c3aa79d838ebd4f2ffa52.tar.gz pubsh-web-00021a5785722be3433c3aa79d838ebd4f2ffa52.tar.bz2 pubsh-web-00021a5785722be3433c3aa79d838ebd4f2ffa52.zip |
Remove unused templates
Signed-off-by: Georg Pfuetzenreuter <mail@georg-pfuetzenreuter.net>
Diffstat (limited to 'src/main/resources')
-rw-r--r-- | src/main/resources/templates/external.html | 22 | ||||
-rw-r--r-- | src/main/resources/templates/userInfo.html | 15 |
2 files changed, 0 insertions, 37 deletions
diff --git a/src/main/resources/templates/external.html b/src/main/resources/templates/external.html deleted file mode 100644 index c2c8cd4..0000000 --- a/src/main/resources/templates/external.html +++ /dev/null @@ -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> diff --git a/src/main/resources/templates/userInfo.html b/src/main/resources/templates/userInfo.html deleted file mode 100644 index 1446fe2..0000000 --- a/src/main/resources/templates/userInfo.html +++ /dev/null @@ -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> |