<!DOCTYPE html SYSTEM "about:legacy-compat">
<html xmlns="http://www.w3.org/1999/xhtml"
xmlns:z="http://www.hekkelman.com/libzeep/m2">
<head>
<title>Landing page</title>
<link rel="stylesheet" href="css/w3.css"/>
</head>
<div z:fragment="menu" class="w3-bar w3-border w3-light-grey">
<a href="/" class="w3-bar-item w3-button">Home</a>
<a href="/admin" class="w3-bar-item w3-button" z:classappend="${#security.hasRole('ADMIN') ? '' : 'w3-text-grey w3-hover-none w3-hover-text-grey'}">Admin</a>
<a z:if="${not #security.authorized()}" href="/login" class="w3-bar-item w3-button w3-green w3-right">Login</a>
<a z:if="${#security.authorized()}" href="/logout" class="w3-bar-item w3-button w3-green w3-right">Logout</a>
</div>
</html>
|