JSP Addressbook app for VIP Express (circa Jun 2002)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.

14 lines
377 B

  1. <% session.invalidate(); %>
  2. <%! static String pageTitle = "Session Ended"; %>
  3. <%@ include file = "include/pageHeader.jsp" %>
  4. <body bgcolor="#f7f7f7">
  5. <center>
  6. <br><br>
  7. <b class="title"><%= pageTitle %></b>
  8. <br><br><br>
  9. <form name="form" method=POST action="/index.jsp">
  10. <input type="submit" value="New Session"/>
  11. </form>
  12. </center>
  13. </body>
  14. </html>