forked from marg-o/brigate
23 lines
561 B
Plaintext
23 lines
561 B
Plaintext
|
<%@ page language="java" contentType="text/html; charset=UTF-8"
|
||
|
pageEncoding="ISO-8859-1"%>
|
||
|
<!DOCTYPE html>
|
||
|
<html>
|
||
|
<head>
|
||
|
<meta charset="UTF-8">
|
||
|
<link rel="stylesheet"
|
||
|
href="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css"
|
||
|
integrity="sha384-Vkoo8x4CGsO3+Hhxv8T/Q5PaXtkKtu6ug5TOeNV6gBiFeWPGFN9MuhOf23Q9Ifjh"
|
||
|
crossorigin="anonymous">
|
||
|
<title>ERROR</title>
|
||
|
</head>
|
||
|
<body>
|
||
|
<h1>ERRORE</h1>
|
||
|
<%
|
||
|
String messaggio = (String) request.getAttribute("messaggio");
|
||
|
|
||
|
if(messaggio != null){
|
||
|
out.print(messaggio);
|
||
|
}
|
||
|
%>
|
||
|
</body>
|
||
|
</html>
|