Add LDAP authentication and enabling Spring logging
[proteocache.git] / webapp / view / help / Overview.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 <%@ taglib prefix="sec" uri="http://www.springframework.org/security/tags"%>
10
11 <html>
12 <jsp:include page="../fragments/header.jsp" />
13 <body>
14         <div class="container">
15         <sec:authorize access="!isAuthenticated()">
16                 <jsp:include page="../fragments/publicmenu.jsp" />
17         </sec:authorize>
18                 <sec:authorize access="isAuthenticated()">
19                 <jsp:include page="../fragments/mainmenu.jsp" />
20         </sec:authorize>
21
22         <div class="panel panel-default">
23                 <div class="panel-heading">
24                         <div style="font-weight:bold;">ProteoCache Overview</div>
25                 </div>
26                 <div class="panel-body">
27                         <p>ProteoCache is a java web framework for caching results from <a href="http://www.compbio.dundee.ac.uk/www-jpred/">Jpred</a>.</p>
28                 </div>
29         </div>
30
31                 <jsp:include page="../fragments/footer.jsp" />
32         </div>
33 </body>
34 </html>