Skip to content
Snippets Groups Projects
Commit 23091d58 authored by Gian Bustamante (gib650)'s avatar Gian Bustamante (gib650)
Browse files

Update QueueingApp/src/main/webapp/workerView.jsp, QueueingApp/src/main/webapp/workerReportPage.jsp

parent 48ffe40d
No related branches found
No related tags found
6 merge requests!20Update QueueingApp/src/main/webapp/workerLogin.jsp,...,!19Update QueueingApp/src/main/webapp/workerLogin.jsp,...,!18Update QueueingApp/src/main/webapp/workerLogin.jsp,...,!17Update QueueingApp/src/main/webapp/workerLogin.jsp,...,!14Update QueueingApp/src/main/webapp/workerLogin.jsp,...,!13all updates to MAIN
......@@ -18,6 +18,14 @@
</head>
<body>
<%
//checks first if the loggedin user is a manager
if(session.getAttribute("user") == null &&
!(boolean)session.getAttribute("isManager")){
response.sendRedirect("workerLogin.jsp");
}
%>
<div class="NavBar">
<strong> QueueApp </strong>
<ul class="nav_choice">
......
......@@ -26,6 +26,13 @@
<body>
<%
//checks first if the loggedin user is a manager
if(session.getAttribute("user") == null ){
response.sendRedirect("workerLogin.jsp");
}
%>
<div class="NavBar">
<strong> QueueApp </strong>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment