%@ page language="java" contentType="text/html; charset=UTF-8"
pageEncoding="UTF-8"%>
Insert title here
<% String msg=(String)request.getAttribute("msg");
Cookie[] cookies = request.getCookies();
String cUser = "";
String cPassword = "";
if (cookies != null) {
int x = cookies.length;
for (int i = 0; i < x; i++) {
Cookie cookie = cookies[i];
if ("username".equals(cookie.getName())) {
cUser = cookie.getValue();
}
if ("password".equals(cookie.getName())) {
cPassword = cookie.getValue();
}
}
}
%>
<%=msg==null?"":msg %>