Replacing Spring Security framework with Apache Tomcat Valve for Web Security (UI...
[controller.git] / opendaylight / web / root / src / main / resources / WEB-INF / jsp / error.jsp
1 <%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
2 <%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
3
4 <!DOCTYPE html>
5 <html>
6   <head>
7     <meta charset="utf-8">
8     <title>OpenDaylight - Error</title>
9
10     <!-- Bootstrap CSS - 1 -->
11     <link href="/css/bootstrap.min.css" rel="stylesheet" media="screen">
12     
13     <!-- Login CSS - 2 -->
14     <link rel="stylesheet/less" type="text/css" href="/css/login.less">
15     
16     <!-- Bootstrap JS - 1 -->
17     <script src="/js/bootstrap.min.js"></script>
18     
19     <!-- LESS - 2 -->
20     <script type="text/javascript">
21         less = {
22             env: "production"
23         };
24     </script>
25     <script src="/js/less-1.3.3.min.js"></script>
26 </head>
27 <body>
28         <form action="<c:url value='/' />" id="form" method="post">
29
30   <div class="container">
31     <div class="content">
32        <div class="login-form">
33          <div id="logo"></div>
34            <fieldset>
35             <p>Your session has timed out or there was an error.<p>
36             <p>Please go back to the login page and try again.</p>
37             <br/>
38              <button class="btn btn-primary" type="submit" value="Log In" >Go To Login Page</button>
39            </fieldset>
40        </div>
41     </div>
42   </div> 
43   </form>
44 </body>
45 </html>