Minor UI changes

Signed-off-by: Georg Pfuetzenreuter <mail@georg-pfuetzenreuter.net>
This commit is contained in:
Georg Pfuetzenreuter 2022-05-08 05:21:07 +02:00
parent 00021a5785
commit 6379976dff
Signed by: Georg
GPG Key ID: 1ED2F138E7E6FF57
5 changed files with 8 additions and 6 deletions

View File

@ -6,7 +6,6 @@ import java.util.Arrays;
import java.util.Collection; import java.util.Collection;
import java.util.HashSet; import java.util.HashSet;
import java.util.List; import java.util.List;
import java.util.Map;
import java.util.Set; import java.util.Set;
import java.util.stream.Collectors; import java.util.stream.Collectors;
import com.github.dockerjava.api.DockerClient; import com.github.dockerjava.api.DockerClient;

View File

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

View File

@ -76,10 +76,11 @@
<!--div id="pagefoot" th:include="layout :: footerFragment">Footer</div-->
<p></p> <p></p>
<a href="/logout">Logout</a> <a href="/logout">Logout</a>
</div> </div>
<!-- container --> <!-- container -->
</body> </body>
<footer><div id="pagefoot" th:include="layout :: footerFragment">Footer</div></footer>
</html> </html>

View File

@ -1,7 +1,7 @@
<head th:fragment="headerFragment"> <head th:fragment="headerFragment">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>Customer Portal</title> <title>Public Shell</title>
<link <link
href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css"
rel="stylesheet" rel="stylesheet"
@ -13,6 +13,7 @@
</head> </head>
<div id="pagefoot" th:fragment="footerFragment"> <div id="pagefoot" th:fragment="footerFragment">
<p>Document last modified 2017/10/23.</p> <p></p>
<p>Copyright: Lorem Ipsum</p> <p>Operated by <a href="https://liberta.casa/">LibertaCasa</a></p>
<!--p>Copyright: Lorem Ipsum</p-->
</div> </div>

View File

@ -64,5 +64,6 @@
<footer> <footer>
<p><a href="/logout">SSO Logout</a></p> <p><a href="/logout">SSO Logout</a></p>
<div id="pagefoot" th:include="layout :: footerFragment">Footer</div>
</footer> </footer>
</html> </html>