aboutsummaryrefslogtreecommitdiff
path: root/webapp/jsp/local_connection_page.jsp
diff options
context:
space:
mode:
Diffstat (limited to 'webapp/jsp/local_connection_page.jsp')
-rw-r--r--webapp/jsp/local_connection_page.jsp50
1 files changed, 50 insertions, 0 deletions
diff --git a/webapp/jsp/local_connection_page.jsp b/webapp/jsp/local_connection_page.jsp
new file mode 100644
index 0000000..91ba403
--- /dev/null
+++ b/webapp/jsp/local_connection_page.jsp
@@ -0,0 +1,50 @@
+<%@ page contentType="text/html; charset=UTF-8" %>
+<%
+ String local_request_url = (String)request.getAttribute("local_request_url");
+ String quoted_request = (String)request.getAttribute("quoted_request");
+ String data_url = (String)request.getAttribute("data_url");
+ String redirect_url = (String)request.getAttribute("redirect_url");
+%>
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+<html>
+<head>
+<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
+<title>PDF-AS Amtssignaturen Lokale Verbindung</title>
+<link rel="stylesheet" type="text/css" href="/pdf-as/css/styles.css" />
+</head>
+
+<body onload="document.submitform.submit()">
+
+<div class="maindiv">
+
+<h1>PDF-AS Amtssignaturen</h1>
+
+<div class="mainframe">
+<div class="mainheadline">Verbindung zu BKU/A1</div>
+
+<div>Die Verbindung wird hergestellt.<br/>Bitte haben sie etwas Geduld.</div>
+
+
+<form action="<%= local_request_url %>"
+ name="submitform"
+ accept-charset="UTF-8"
+ method="post">
+<!-- enctype="multipart/form-data"-->
+
+
+
+<input type="hidden" name="XMLRequest" value="<%= quoted_request %>" />
+
+<input type="hidden" name="DataURL" value="<%= data_url %>" />
+<input type="hidden" name="RedirectURL" value="<%= redirect_url %>" />
+
+<input class="ip" type="submit" value="Abschicken..." />
+
+</form>
+
+
+</div>
+<a class="big" href="/pdf-as/">zurück</a>
+</div>
+</body>
+</html>