2018-05-21 17:50:44 +02:00
|
|
|
<%@ page contentType="text/html;charset=UTF-8" language="java" %>
|
2023-01-09 16:32:12 +01:00
|
|
|
<!DOCTYPE html>
|
2018-05-21 17:50:44 +02:00
|
|
|
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%>
|
|
|
|
<% if (session.getAttribute("successDeleteAccount") == null) {
|
|
|
|
String redirectURL = request.getContextPath() + "/error404.jsp";
|
|
|
|
response.sendRedirect(redirectURL);
|
|
|
|
|
2023-01-09 16:32:12 +01:00
|
|
|
} else if (session.getAttribute("successDeleteAccount") != null) {
|
2018-05-21 17:50:44 +02:00
|
|
|
session.removeAttribute("successDeleteAccount");
|
2023-01-09 16:32:12 +01:00
|
|
|
}%>
|
|
|
|
<html lang="en-gb" dir="ltr" vocab="http://schema.org/">
|
|
|
|
<jsp:include page="head.jsp">
|
|
|
|
<jsp:param name="title" value="OpenAIRE - Success"/>
|
|
|
|
</jsp:include>
|
|
|
|
<body>
|
|
|
|
<div class="uk-section uk-section-small uk-container uk-container-small">
|
|
|
|
<div class="uk-text-center">
|
|
|
|
<img src="images/Logo_Horizontal.png" style="height: 80px;">
|
|
|
|
<div class="uk-margin-large-top uk-text-success">
|
|
|
|
<span class="material-icons" style="font-size: 180px;">check</span>
|
2018-05-21 17:50:44 +02:00
|
|
|
</div>
|
2023-01-09 16:32:12 +01:00
|
|
|
<div class="uk-text-large uk-text-bold uk-margin-medium-top">Your account has been successfully deleted!</div>
|
|
|
|
<div class="uk-margin-top">We hope to see you again!</div>
|
2018-05-21 17:50:44 +02:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</body>
|
|
|
|
</html>
|