diff options
Diffstat (limited to 'simpleSigning/src/main/resources/html/template_start.html')
-rw-r--r-- | simpleSigning/src/main/resources/html/template_start.html | 25 |
1 files changed, 25 insertions, 0 deletions
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> |