diff options
author | Andreas Fitzek <andreas.fitzek@iaik.tugraz.at> | 2014-07-22 10:14:21 +0200 |
---|---|---|
committer | Andreas Fitzek <andreas.fitzek@iaik.tugraz.at> | 2014-07-22 10:14:21 +0200 |
commit | cdfd4153809a9f1f5fed903b06e19f92cdd10d1a (patch) | |
tree | ec379abc5c90d5992f91314c4c49a28d0a4845a1 /simpleSigning/src/main/resources/html/template_start.html | |
parent | 88f8892f2d51727df6764b97d4facaf93ab3f9a6 (diff) | |
download | einfach-signieren-cdfd4153809a9f1f5fed903b06e19f92cdd10d1a.tar.gz einfach-signieren-cdfd4153809a9f1f5fed903b06e19f92cdd10d1a.tar.bz2 einfach-signieren-cdfd4153809a9f1f5fed903b06e19f92cdd10d1a.zip |
einfach Signieren first commit
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> |