Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/main/resources/templates/fragments/header.html

    ra9ffccd r0fb69cc  
    5959<body>
    6060<div style="width: 100%">
    61 <nav class="menu" xmlns:sec="http://www.w3.org/1999/xhtml">
     61<nav class="menu">
    6262    <ul class="menu-left">
    6363        <li class="begin"><a href="/home">MovieZone</a></li>
     
    7474    </ul>
    7575    <ul class="menu-right">
    76         <th:block th:if="${#request.getRemoteUser() != null}">
    77             <li class="reg">
    78                 <a href="/">
    79                     <th:block th:text="${#request.getRemoteUser()}"></th:block>
    80                 </a>
    81             </li>
    82         </th:block>
    83         <th:block th:if="${#request.getRemoteUser() == null}">
    84             <li class="reg"><a href="/register">Регистрација</a></li>
    85         </th:block>
    86         <th:block th:if="${#request.getRemoteUser() != null}">
    87             <li class="reg" sec:authorize="isAuthenticated()">
    88                 <a  href="/logout">
    89                     Одјави се
    90                 </a>
    91             </li>
    92         </th:block>
    93         <th:block th:if="${#request.getRemoteUser() == null}">
    94             <li class="reg"><a href="/login">Најава</a></li>
    95         </th:block>
     76        <li class="reg"><a href="/login">Најава</a></li>
     77        <li class="reg"><a href="/register">Регистрација</a></li>
    9678    </ul>
    9779</nav></div>
Note: See TracChangeset for help on using the changeset viewer.