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" ng-controller="userCtrl">
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
	    
27
	    <div class="card text-center" style="margin-top: 25px">
28
			<div class="card-body">
29
				<h5 class="card-title">403 - Access is denied</h5>
30
				<p class="card-text" th:inline="text">Hello '[[${#httpServletRequest.remoteUser}]]', you do not have permission to access this page.</p>
31
			</div>
32
		</div>
33
    
34
	
35
	</div>
36

    
37
	<script src="resources/js/bootstrap.min.js"></script>
38

    
39
</body>
40

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