aboutsummaryrefslogtreecommitdiff
path: root/simpleSigning/src/main/resources/html
diff options
context:
space:
mode:
Diffstat (limited to 'simpleSigning/src/main/resources/html')
-rw-r--r--simpleSigning/src/main/resources/html/bkuSelektion16
-rw-r--r--simpleSigning/src/main/resources/html/fileupload3
-rw-r--r--simpleSigning/src/main/resources/html/questionForm.html21
-rw-r--r--simpleSigning/src/main/resources/html/script_exec.html11
-rw-r--r--simpleSigning/src/main/resources/html/submit1
-rw-r--r--simpleSigning/src/main/resources/html/template_start.html25
-rw-r--r--simpleSigning/src/main/resources/html/textinput4
7 files changed, 81 insertions, 0 deletions
diff --git a/simpleSigning/src/main/resources/html/bkuSelektion b/simpleSigning/src/main/resources/html/bkuSelektion
new file mode 100644
index 0000000..1a3454a
--- /dev/null
+++ b/simpleSigning/src/main/resources/html/bkuSelektion
@@ -0,0 +1,16 @@
+<div class="bkubox">
+<div class="floatleft">
+ <div class="image"><img src="##REPLACE##PUBURL##/online-bku.png" alt="Login mit Karte" width="76" height="50" style="margin-top: 1.5em;"></div>
+ <button type="submit" value="bku" name="connector" id="bku">Lokale Karte</button>
+</div>
+
+<div class="floatcenter">
+ <div class="image"><img src="##REPLACE##PUBURL##/online-bku.png" alt="Login mit Karte" width="76" height="50" style="margin-top: 1.5em;"></div>
+ <button type="submit" value="onlinebku" name="connector" id="onlinebku">Online Karte</button>
+</div>
+
+<div class="floatright">
+ <div class="image"><img src="##REPLACE##PUBURL##/mobile-bku.png" alt="Login mit Handy" width="34" height="57" style="margin-top: 1em;"></div>
+ <button type="submit" value="mobilebku" name="connector" id="mobilebku">Handy</button>
+</div>
+</div> \ No newline at end of file
diff --git a/simpleSigning/src/main/resources/html/fileupload b/simpleSigning/src/main/resources/html/fileupload
new file mode 100644
index 0000000..8c68e8a
--- /dev/null
+++ b/simpleSigning/src/main/resources/html/fileupload
@@ -0,0 +1,3 @@
+<div class="input_container">
+<input type="file" name="pdf-file" id="pdf-file" accept="application/pdf">
+</div> \ No newline at end of file
diff --git a/simpleSigning/src/main/resources/html/questionForm.html b/simpleSigning/src/main/resources/html/questionForm.html
new file mode 100644
index 0000000..5f6559d
--- /dev/null
+++ b/simpleSigning/src/main/resources/html/questionForm.html
@@ -0,0 +1,21 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
+<html lang="de">
+<head>
+<title></title>
+<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
+
+<link media="screen" href="pdfas.css" type="text/css" rel="stylesheet">
+
+</head>
+<body>
+ <form name="CustomizedForm" action="##ACTIONURL##" method="POST"
+ enctype="multipart/form-data">
+ ##REPLACE##FILEUP##
+ ##REPLACE##BKUSEL##
+ </form>
+
+ <script language="javascript" type="text/javascript">
+ ##REPLACE##SCRIPT##
+ </script>
+</body>
+</html> \ No newline at end of file
diff --git a/simpleSigning/src/main/resources/html/script_exec.html b/simpleSigning/src/main/resources/html/script_exec.html
new file mode 100644
index 0000000..ed630a9
--- /dev/null
+++ b/simpleSigning/src/main/resources/html/script_exec.html
@@ -0,0 +1,11 @@
+<!DOCTYPE html>
+<html>
+<head>
+<meta charset="UTF-8">
+</head>
+<body>
+<script type="text/javascript">
+##REPLACE##SCRIPT##
+</script>
+</body>
+</html> \ No newline at end of file
diff --git a/simpleSigning/src/main/resources/html/submit b/simpleSigning/src/main/resources/html/submit
new file mode 100644
index 0000000..1b3a840
--- /dev/null
+++ b/simpleSigning/src/main/resources/html/submit
@@ -0,0 +1 @@
+<button type="submit">Upload</button> \ No newline at end of file
diff --git a/simpleSigning/src/main/resources/html/template_start.html b/simpleSigning/src/main/resources/html/template_start.html
new file mode 100644
index 0000000..19e780b
--- /dev/null
+++ b/simpleSigning/src/main/resources/html/template_start.html
@@ -0,0 +1,25 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
+<html lang="de">
+<head>
+<title></title>
+<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
+<script language="javascript" type="text/javascript">
+function onAnmeldeSubmit() {
+ document.CustomizedForm.submit();
+ document.CustomizedForm.Senden.disabled=true;
+ document.CustomizedForm.Senden.hidden = "hidden";
+}
+</script>
+</head>
+<body onload="onAnmeldeSubmit()">
+ <form name="CustomizedForm" action="##PDFASURL##" method="POST"
+ enctype="multipart/x-www-form-urlencoded">
+ <input class="button" type="submit" value="Starte Signaturvorgang" name="Senden">
+ <input type="hidden" name="connector" value="##CONNECTOR##">
+ <input type="hidden" name="pdf-url" value="##PDFURL##">
+ <input type="hidden" name="invoke-app-url" value="##INVOKEURL##">
+ <input type="hidden" name="invoke-app-url-target" value="##INVOKETARGET##">
+ <input type="hidden" name="invoke-app-error-url" value="##INVOKEERRORURL##">
+ </form>
+</body>
+</html>
diff --git a/simpleSigning/src/main/resources/html/textinput b/simpleSigning/src/main/resources/html/textinput
new file mode 100644
index 0000000..b4572e1
--- /dev/null
+++ b/simpleSigning/src/main/resources/html/textinput
@@ -0,0 +1,4 @@
+<div class="input_container">
+<p>Text to sign:</p>
+<textarea name="txtContent" style="width: 100%"></textarea>
+</div> \ No newline at end of file