Project

General

Profile

1
<%--
2
  Created by IntelliJ IDEA.
3
  User: sofia
4
  Date: 12/10/2017
5
  Time: 4:16 μμ
6
  To change this template use File | Settings | File Templates.
7
--%>
8
<%@ page contentType="text/html;charset=UTF-8" language="java" %>
9
<!DOCTYPE html>
10
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%>
11
<% if (session.getAttribute("error") == null) {
12
        String redirectURL = request.getContextPath() + "/error404.jsp";
13
        response.sendRedirect(redirectURL);
14
    } else if (session.getAttribute("error") != null) {
15
        session.removeAttribute("error");
16
}%>
17
<html lang="en-gb" dir="ltr" vocab="http://schema.org/">
18
<head>
19
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
20
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
21
    <meta name="viewport" content="width=device-width, initial-scale=1">
22
    <base href=".">
23
    <title>OpenAIRE - Error</title>
24
    <script src="./js/jquery.js"></script>
25
    <script src="./js/uikit.min.js"></script>
26
    <script src="./js/validation.js"></script>
27
    <link rel="stylesheet" style="text/css" href="./css/theme.css">
28
    <link rel="stylesheet" style="text/css" href="./css/custom.css">
29
    <link rel="stylesheet" style="text/css" href="./css/aai-custom.css">
30
    <link rel="icon" type="image/png" sizes="32x32" href="images/favicon/favicon-32x32.png">
31
    <link rel="icon" type="image/png" sizes="96x96" href="images/favicon//favicon-96x96.png">
32
    <link rel="icon" type="image/png" sizes="16x16" href="images/favicon/favicon-16x16.png">
33
    <link href="images/favicon/favicon.ico" rel="shortcut icon" type="image/vnd.microsoft.icon" />
34
</head>
35
<body class="" style="">
36
<div class="uk-offcanvas-content uk-height-viewport">
37
    <div class="tm-header  tm-header-transparent">
38
        <div class="uk-container uk-container-expand">
39
            <nav class="uk-navbar" uk-navbar="{&quot;align&quot;:&quot;left&quot;}">
40
                <div class="uk-navbar-center">
41
                    <div class="uk-logo uk-navbar-item">
42
                        <img alt="OpenAIRE" class="uk-responsive-height" src="./images/Logo_Horizontal.png">
43
                    </div>
44
                </div>
45
            </nav>
46
        </div>
47
    </div>
48
    <!-- CONTENT STARTS HERE -->
49
    <div class="first_page_section uk-section-default uk-section uk-padding-remove-vertical">
50
        <div class="first_page_banner_headline uk-grid-collapse uk-flex-middle uk-margin-remove-vertical uk-grid">
51
        </div>
52
    </div>
53
    <div class=" uk-section uk-margin-small-top tm-middle custom-main-content" id="tm-main">
54
        <div class="uk-container uk-container-small uk-margin-medium-top  uk-margin-small-bottom uk-text-center">
55
            <%--<h2 class="uk-h2 uk-margin-small-bottom">Welcome to our Single Sign-On service</h2>--%>
56
            <%--<div class="uk-text-meta uk-margin-large-bottom">Use the same credentials for all our services</div>--%>
57
            <div class="tm-main uk-width-1-1@s uk-width-1-1@m  uk-width-1-1@l uk-row-first uk-first-column">
58
                <div class="uk-width-1-1">
59
                    <h3 class="uk-h4 uk-text-danger">Oops! Something went wrong!</h3>
60
                    <div class="middle-box loginscreen animated fadeInDown uk-text-left ">
61
                        <p>Something went wrong. Please try again later or contact OpenAIRE <a href="https://www.openaire.eu/support/helpdesk">helpdesk</a>. We apologize for the inconvenience.</p>
62
                    </div>
63
                </div>
64

    
65
            </div>
66
        </div>
67
    </div>
68
    <!-- CONTENT ENDS HERE -->
69
    <!-- FOOTER STARTS HERE-->
70
    <div class="custom-footer"  style="z-index: 200;">
71
        <div class="uk-section-primary uk-section uk-section-small">
72
            <div class="uk-container">
73
                <div class="uk-grid-margin uk-grid uk-grid-stack" uk-grid="">
74
                    <div class="uk-width-1-1@m uk-first-column">
75
                        <div class="uk-margin uk-margin-remove-top uk-margin-remove-bottom uk-text-center">
76
                            <img alt="OpenAIRE" class="el-image" src="./images/Logo_Horizontal_white_small.png">
77
                        </div>
78
                        <div class="footer-license uk-margin uk-margin-remove-bottom uk-text-center uk-text-lead">
79
                            <div><a href="http://creativecommons.org/licenses/by/4.0/" target="_blank" rel="license"><img alt="Creative" src="./images/80x15.png" style="height: auto; max-width: 100%; vertical-align: middle;"></a>&nbsp;UNLESS OTHERWISE INDICATED, ALL MATERIALS CREATED BY THE OPENAIRE CONSORTIUM ARE LICENSED UNDER A&nbsp;<a href="http://creativecommons.org/licenses/by/4.0/" rel="license">CREATIVE COMMONS ATTRIBUTION 4.0 INTERNATIONAL LICENSE</a>.</div>
80
                            <div>OPENAIRE IS POWERED BY&nbsp;<a href="http://www.d-net.research-infrastructures.eu/">D-NET</a>.</div>
81
                        </div>
82
                        <div class="uk-margin uk-margin-remove-top uk-margin-remove-bottom uk-text-right">
83
                            <a class="uk-totop uk-icon" href="#" uk-scroll="" uk-totop="">
84
                            </a>
85
                        </div>
86
                    </div>
87
                </div>
88
            </div>
89
        </div>
90
    </div>
91
    <!-- FOOTER ENDS HERE -->
92
</div>
93
</body>
94
</html>
(5-5/27)