Project

General

Profile

1
<%--
2
  Created by IntelliJ IDEA.
3
  User: sofia
4
  Date: 19/10/2017
5
  Time: 4:12 μμ
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("success") == null) {
12
    String redirectURL = request.getContextPath() + "/error404.jsp";
13
    response.sendRedirect(redirectURL);
14

    
15
} else if (session.getAttribute("success")!=null) {
16
    session.removeAttribute("success");
17
}
18
%>
19
<%--<META HTTP-EQUIV=Refresh CONTENT="0.5; URL=http://beta.services.openaire.eu/uoa-user-management/openid_connect_login">--%>
20

    
21
<META HTTP-EQUIV=Refresh CONTENT='0.5; URL=<%= session.getAttribute("homeUrl")%>'>
22
<html lang="en-gb" dir="ltr" vocab="http://schema.org/">
23
<head>
24
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
25
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
26
    <meta name="viewport" content="width=device-width, initial-scale=1">
27
    <title>OpenAIRE - Forgot password</title>
28
    <script src="./js/jquery.js"></script>
29
    <script src="./js/uikit.js"></script>
30
    <script src="./js/validation.js"></script>
31
    <link rel="stylesheet" style="text/css" href="./css/theme.css">
32
    <link rel="stylesheet" style="text/css" href="./css/custom.css">
33
    <link rel="stylesheet" style="text/css" href="./css/aai-custom.css">
34
</head>
35
<body class="" style="">
36
<div class="uk-offcanvas-content uk-height-viewport">
37
    <!-- MENU STARTS HERE -->
38
    <!-- MAIN MENU STARTS HERE -->
39
    <div class="tm-header  tm-header-transparent" uk-header="">
40
        <div class="uk-container uk-container-expand">
41
            <nav class="uk-navbar" uk-navbar="{&quot;align&quot;:&quot;left&quot;}">
42
                <div class="uk-navbar-center">
43
                    <div class="uk-logo uk-navbar-item">
44
                        <img alt="OpenAIRE" class="uk-responsive-height" src="./images/Logo_Horizontal.png">
45
                    </div>
46
                </div>
47
            </nav>
48
        </div>
49
    </div>
50
    <!-- MENU ENDS HERE -->
51
    <!-- CONTENT STARTS HERE -->
52
    <div class="first_page_section uk-section-default uk-section uk-padding-remove-vertical">
53
        <div class="first_page_banner_headline uk-grid-collapse uk-flex-middle uk-margin-remove-vertical uk-grid" uk-grid="">
54
        </div>
55
    </div>
56
    <div class=" uk-section  uk-margin-small-top tm-middle custom-main-content" id="tm-main">
57
        <div class="uk-container uk-container-small uk-margin-medium-top  uk-margin-small-bottom uk-text-center">
58
            <%--<h2 class="uk-h2 uk-margin-small-bottom">Forgot Password</h2>--%>
59
            <div uk-grid="" class="uk-grid uk-grid-stack">
60
                <div class="tm-main uk-width-1-2@s uk-width-1-1@m  uk-width-1-1@l uk-row-first uk-first-column uk-align-center">
61
                    <div class="uk-grid ">
62
                        <!-- CENTER SIDE -->
63
                        <div class="uk-width-1-1@m uk-width-1-1@s uk-text-center">
64
                            <!-- <h3 class="uk-h3">Create an account</h3> -->
65
                            <div class="middle-box text-center loginscreen animated fadeInDown ">
66
                                <h3 class="uk-h4 uk-text-success">Your password has been successfully changed!</h3>
67
                                <div class="uk-width-1-3@m uk-align-center">
68

    
69
                                </div>
70
                                </ul>
71
                            </div>
72
                        </div>
73
                        <!-- END OF CENTER SIDE -->
74
                    </div>
75
                </div>
76
            </div>
77
        </div>
78
    </div>
79
    <!-- CONTENT ENDS HERE -->
80
    <!-- FOOTER STARTS HERE-->
81
    <div class="custom-footer"  style="z-index: 200;">
82
        <div class="uk-section-primary uk-section uk-section-small">
83
            <div class="uk-container">
84
                <div class="uk-grid-margin uk-grid uk-grid-stack" uk-grid="">
85
                    <div class="uk-width-1-1@m uk-first-column">
86
                        <div class="uk-margin uk-margin-remove-top uk-margin-remove-bottom uk-text-center">
87
                            <img alt="OpenAIRE" class="el-image" src="./images/Logo_Horizontal_white_small.png">
88
                        </div>
89
                        <div class="footer-license uk-margin uk-margin-remove-bottom uk-text-center uk-text-lead">
90
                            <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>
91
                            <div>OPENAIRE IS POWERED BY&nbsp;<a href="http://www.d-net.research-infrastructures.eu/">D-NET</a>.</div>
92
                        </div>
93
                        <div class="uk-margin uk-margin-remove-top uk-margin-remove-bottom uk-text-right">
94
                            <a class="uk-totop uk-icon" href="#" uk-scroll="" uk-totop="">
95
                            </a>
96
                        </div>
97
                    </div>
98
                </div>
99
            </div>
100
        </div>
101
    </div> <!-- FOOTER ENDS HERE -->
102
</div>
103
</body>
104
</html>
105

    
(13-13/16)