21 lines
536 B
Plaintext
21 lines
536 B
Plaintext
<%@page session="false" %>
|
|
<%@taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
|
|
|
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
|
|
|
|
<html>
|
|
<head>
|
|
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
|
|
<link rel="stylesheet" href="<c:url value='/static/css/tutorial.css'/>" type="text/css" />
|
|
<title>Logged Out</title>
|
|
</head>
|
|
<body>
|
|
<div id="content">
|
|
<h2>Logged Out</h2>
|
|
<p>
|
|
You have been logged out. <a href="<c:url value='/'/>">Start again</a>.
|
|
</p>
|
|
</div>
|
|
</body>
|
|
</html>
|