forked from georchestra/georchestra
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path403.jsp
26 lines (24 loc) · 816 Bytes
/
403.jsp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<%@ page language="java" contentType="text/html; charset=UTF-8"
pageEncoding="UTF-8"%>
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
<%@ taglib uri="http://www.springframework.org/tags" prefix="s" %>
<!DOCTYPE html>
<!--TODO: set appropriate lang-->
<!--TODO: favicon-->
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title><s:message code="403.title"/></title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href='/_static/bootstrap_3.0.0/css/bootstrap.min.css' rel="stylesheet" />
</head>
<body>
<%@ include file="header.jsp" %>
<div class="container">
<div class="page-header">
<h1><s:message code="403.title"/></h1>
</div>
<p class="lead"><s:message code="403.body"/></p>
</div>
</body>
</html>