23 lines
480 B
HTML
23 lines
480 B
HTML
<!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>
|