29 lines
1.0 KiB
HTML
29 lines
1.0 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en"
|
|
xmlns:th="http://www.thymeleaf.org"
|
|
xmlns:sec="http://www.thymeleaf.org/thymeleaf-extras-springsecurity4"
|
|
xmlns:layout="http://www.ultraq.net.nz/thymeleaf/layout"
|
|
layout:decorator="default">
|
|
<head>
|
|
</head>
|
|
<body>
|
|
<nav layout:fragment="navbar">
|
|
<div class="navbar-header">
|
|
<a class="navbar-brand" href="/"><span class="ui-menuitem-text"><i
|
|
class="fa fa-plane fa-4" aria-hidden="true"></i> Balance</span></a>
|
|
</div>
|
|
</nav>
|
|
<div class="container" layout:fragment="content">
|
|
<div class="isAuth" sec:authorize="isAuthenticated()" style="display: none"></div>
|
|
<section id="loginForm">
|
|
</section>
|
|
</div>
|
|
|
|
<div layout:fragment="react-scripts" th:remove="tag">
|
|
<script type="text/babel" src="/js/react/loginPage/components/login.js"></script>
|
|
<script type="text/babel" src="/js/react/loginPage/components/register.js"></script>
|
|
<script type="text/babel" src="/js/react/loginPage/index.js"></script>
|
|
</div>
|
|
|
|
</body>
|
|
</html> |