Commit adaf3f13 by Bogdan Andjelkovic

spring security 1

parent a4497676
......@@ -19,7 +19,7 @@
</head>
<body>
<body th:object="${loggedUser}">
<header>
<nav>
<ul>
......@@ -38,9 +38,9 @@
</div>
</header>
<div id="pozadina">
<h1 th:object="${loggedUser}">
<h1>
<span th:if="${loggedUser == null}">Uloguj se</span>
<span th:if="${loggedUser != null}" th:text="loggedUser.getKorisnik().getIme()"></span>
<span th:if="${loggedUser != null}" th:text="${loggedUser.getKorisnik().getIme()}"></span>
</h1>
</div>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment