Dateiverwaltung für die WebBox
ulrich
2018-04-03 af99308ac8192fd47be8f6ec030f973a0bf23072
commit | author | age
b7475d 1 <%@page contentType="text/html" pageEncoding="ISO-8859-1"%>
U 2 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
3    "http://www.w3.org/TR/html4/loose.dtd">
4
5 <html>
6 <head>
7   <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
8   <style>
9     body {
10       font-family:Arial,Helvetica,sans-serif;
11       font-size:10pt;
12     }
13   </style>
14   <title>Fehler</title>
15   <%
16     String url = request.getRequestURL().toString();
17     url = url.substring(0, url.lastIndexOf("/"));
18   %>
19 </head>
20 <body>
21 <p>Hoppla! Die Anmeldung hat nicht geklappt.</p>
22
23 <p>Klicken Sie <a href="<%=url%>">hier</a> um zur Hauptseite zu gelangen.</p>
24 </body>
25 </html>