Project

General

Profile

1
<!DOCTYPE HTML>
2
<html xmlns:th="http://www.thymeleaf.org">
3

    
4
<head>
5
	<meta charset="utf-8">
6
	<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
7
	<meta http-equiv="Cache-Control" content="no-cache, no-store, must-revalidate">
8
	<meta http-equiv="Pragma" content="no-cache">
9
	<meta http-equiv="Expires" content="0">
10

    
11
	<!-- Bootstrap CSS -->
12
	<link rel="stylesheet" href="resources/css/bootstrap.min.css" />
13
	
14
	<title>Organizations Database: not authorized</title>
15
</head>
16

    
17
<body>
18

    
19
	<div class="container">
20
		<nav class="navbar navbar-expand-lg navbar-dark bg-primary">
21
			<a class="navbar-brand" href="#"> 
22
				<img src="resources/images/openaire_logo_small.png" width="30" height="30" alt="OpenOrgs Database"> OpenOrgs Database
23
			</a>
24
		</nav>
25
	    	    
26
	    <div class="card text-center" style="margin-top: 25px">
27
			<div class="card-body">
28
				<h5 class="card-title">403 - Access is denied</h5>
29
				<p class="card-text" th:inline="text">Hello '[[${#httpServletRequest.remoteUser}]]', you do not have permission to access this page.</p>
30
			</div>
31
		</div>
32
	</div>
33

    
34
	<script src="resources/js/jquery-3.4.1.min.js"></script>
35
	<script src="resources/js/popper.min.js"></script>
36
	<script src="resources/js/bootstrap.min.js"></script>
37

    
38
</body>
39

    
40
</html>
(1-1/3)