This commit is contained in:
2021-09-27 16:00:24 -07:00
parent c4097f6c9e
commit 96c28dd7b1
60 changed files with 2774 additions and 0 deletions

23
WebContent/logout.jsp Normal file
View File

@@ -0,0 +1,23 @@
<%@ page language="java" import="java.util.*" pageEncoding="ISO-8859-1"%>
<head>
<META HTTP-EQUIV="Cache-Control" CONTENT="no-cache">
<META HTTP-EQUIV="Pragma" CONTENT="no-cache">
<META HTTP-EQUIV="Expires" CONTENT="-1">
</head>
----//body tags
<%
session.invalidate();
response.setHeader("Cache-Control","no-store");
response.setHeader("Pragma","no-cache");
response.setDateHeader ("Expires", 0);
%>
<jsp:forward page="index.jsp"></jsp:forward>