<%@page contentType="text/html" pageEncoding="ISO-8859-1"%>
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
|
"http://www.w3.org/TR/html4/loose.dtd">
|
|
<html>
|
<head>
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
<style>
|
body {
|
font-family:Arial,Helvetica,sans-serif;
|
font-size:10pt;
|
}
|
</style>
|
<title>Fehler</title>
|
<%
|
String url = request.getRequestURL().toString();
|
url = url.substring(0, url.lastIndexOf("/"));
|
%>
|
</head>
|
<body>
|
<p>Hoppla! Die Anmeldung hat nicht geklappt.</p>
|
|
<p>Klicken Sie <a href="<%=url%>">hier</a> um zur Hauptseite zu gelangen.</p>
|
</body>
|
</html>
|