Skip to content

Instantly share code, notes, and snippets.

@agonist
Created July 24, 2014 12:35
Show Gist options
  • Save agonist/44babdb8e35752995f45 to your computer and use it in GitHub Desktop.
Save agonist/44babdb8e35752995f45 to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html>
<head lang="en">
<meta charset="UTF-8"/>
<title>Protected area</title>
<meta charset="UTF-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1"/>
</head>
<body>
<p th:if="${user.isAdmin()}">I'm the admin so be nice with me</p>
<p th:if="${user.isGuest()}">I'm just a guest</p>
<form style="display: inline" action="#" method="get"
th:action="${#routes.route('sample.LoginController', 'logout')}">
<button class="btn btn-lg btn-primary btn-block" type="submit">Logout</button>
</form>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment