Commit adaf3f13 by Bogdan Andjelkovic

spring security 1

parent a4497676
...@@ -19,7 +19,7 @@ ...@@ -19,7 +19,7 @@
</head> </head>
<body> <body th:object="${loggedUser}">
<header> <header>
<nav> <nav>
<ul> <ul>
...@@ -38,9 +38,9 @@ ...@@ -38,9 +38,9 @@
</div> </div>
</header> </header>
<div id="pozadina"> <div id="pozadina">
<h1 th:object="${loggedUser}"> <h1>
<span th:if="${loggedUser == null}">Uloguj se</span> <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> </h1>
</div> </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