Add LDAP authentication and enabling Spring logging
[proteocache.git] / webapp / view / support / Blocked.jsp
1 <%@ page language="java" contentType="text/html; charset=UTF-8"
2         pageEncoding="UTF-8"%>
3 <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
4
5 <%@ taglib uri="http://www.springframework.org/tags" prefix="spring"%>
6 <%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%>
7 <%@ taglib uri="http://java.sun.com/jsp/jstl/functions" prefix="fn"%>
8 <%@ taglib uri="http://java.sun.com/jsp/jstl/fmt" prefix="fmt"%>
9 <%@page import="java.util.ArrayList"%>
10
11 <html>
12 <jsp:include page="../fragments/header.jsp" />
13 <body>
14         <div class="container">
15                 <c:choose>
16                         <c:when test="${permissions == 'user_role'}">
17                                 <jsp:include page="../fragments/mainmenu.jsp" />
18                         </c:when>
19                         <c:otherwise>
20                                 <jsp:include page="../fragments/publicmenu.jsp" />
21                         </c:otherwise>
22                 </c:choose>
23
24                 <div class="panel panel-default">
25                         <div class="panel-heading">
26                                 <div style="font-weight:bold;">The page is not available...</div>
27                         </div>
28                         <div class="panel-body">
29                                 <p>The functionality is blocked</p>
30                         </div>
31                 </div>
32
33                 <jsp:include page="../fragments/footer.jsp" />
34         </div>
35 </body>
36 </html>