<%@ page language="java" contentType="text/html; charset=ISO-8859-1" pageEncoding="ISO-8859-1"%> <%@ page import="ng911.User" %> <% String username = (String)session.getAttribute("username"); User usr = User.getUser(username); if(usr == null) { session.removeAttribute("username"); username = null; response.sendRedirect("index.jsp"); } %> NG911 Log out
Welcome <%=username %>