Sha256: 3560982f30a05c86a72778e5ce74998b069eaf36065f2f1ff0aa4bf49de9d4d6
Contents?: true
Size: 399 Bytes
Versions: 8
Compression:
Stored size: 399 Bytes
Contents
<%@ page contentType="text/html; charset=UTF-8" %> <%@ page import="java.util.*"%> <%@ page import="javax.servlet.*" %> <%@ page import="javax.servlet.http.*" %> <html> <head> <title>Logout</title> </head> <body> <% HttpSession s = request.getSession(false); s.invalidate(); %> <h1>Logout</h1> <p>You are now logged out.</p> <a href="auth.html"/>Login</a> </body> </html>
Version data entries
8 entries across 4 versions & 1 rubygems