Skip to content

Instantly share code, notes, and snippets.

@bytestree
Created April 24, 2016 11:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bytestree/39a3572417e2f25f94bb607ea8d433d8 to your computer and use it in GitHub Desktop.
Save bytestree/39a3572417e2f25f94bb607ea8d433d8 to your computer and use it in GitHub Desktop.
<%@ page language="java" contentType="text/html; charset=ISO-8859-1" pageEncoding="ISO-8859-1"%>
<%@ taglib prefix="form" uri="http://www.springframework.org/tags/form"%>
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%>
<%@page session="false"%>
<html>
<body>
<h1>Home Page</h1>
<h2>${message}</h2>
<a href='<c:url value="/admin" />'>Admin Page</a>
<br><br>
<form:form action="logout">
<div>
<button type="submit">Logout</button>
</div>
</form:form>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment