Newer
Older
simple-opds / src / main / resources / templates / fragments / top.html
<!DOCTYPE html>
<html xmlns:th="http://www.thymeleaf.org">
<body>
<div th:fragment="top">
    <div class="top-bar" style="background: #2c3e50; color: white; padding: 8px 0;">
        <div class="top-bar-left">
            <ul class="menu">
                <li th:if="${user != null}">
                    <span style="color: #ecf0f1;">
                        Добро пожаловать, <span th:text="${user.username}">User</span>!
                    </span>
                </li>
                <li th:if="${user == null}">
                    <span style="color: #ecf0f1;">Гость</span>
                </li>
            </ul>
        </div>
        <div class="top-bar-right">
            <ul class="menu">
                <li th:if="${user == null}">
                    <a th:href="@{/login}" style="color: #ecf0f1;">
                        <i class="fi-torso"></i> Войти
                    </a>
                </li>
                <li th:if="${user != null}">
                    <a th:href="@{/logout}" style="color: #ecf0f1;">
                        <i class="fi-power"></i> Выйти
                    </a>
                </li>
            </ul>
        </div>
    </div>
</div>
</body>
</html>