diff options
author | Andreas Fitzek <andreas.fitzek@iaik.tugraz.at> | 2014-01-09 12:52:06 +0100 |
---|---|---|
committer | Andreas Fitzek <andreas.fitzek@iaik.tugraz.at> | 2014-01-09 12:52:06 +0100 |
commit | 11c4bfac46f66ab3ba24b6354a6a372da40c0b1f (patch) | |
tree | c1e8f6f9b11eb8d939fefb08ef35ece09eab51a5 /pdf-as-web/src/main/resources | |
parent | cec0065b747d30c6a0a17d18f2c7c8962a9102ed (diff) | |
download | pdf-as-4-11c4bfac46f66ab3ba24b6354a6a372da40c0b1f.tar.gz pdf-as-4-11c4bfac46f66ab3ba24b6354a6a372da40c0b1f.tar.bz2 pdf-as-4-11c4bfac46f66ab3ba24b6354a6a372da40c0b1f.zip |
PDF-AS web Developments
Diffstat (limited to 'pdf-as-web/src/main/resources')
-rw-r--r-- | pdf-as-web/src/main/resources/template_error_redirect.html | 56 | ||||
-rw-r--r-- | pdf-as-web/src/main/resources/template_invoke_redirect.html | 56 |
2 files changed, 112 insertions, 0 deletions
diff --git a/pdf-as-web/src/main/resources/template_error_redirect.html b/pdf-as-web/src/main/resources/template_error_redirect.html new file mode 100644 index 00000000..dd3f9d46 --- /dev/null +++ b/pdf-as-web/src/main/resources/template_error_redirect.html @@ -0,0 +1,56 @@ +<!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"> +<style type="text/css"> +div.frameT { + width: 100%; + padding: 0; + display: table; + height: 100%; + position: absolute; + top: 0; + left: 0; + margin: 0; +} + +div.frameTC { + padding: 0; + vertical-align: middle; + display: table-cell; + margin: 0; +} + +div.content { + width: 600px; + background-color: #fff; + margin: 0 auto; + text-align: left; + padding: 10px; +} +</style> +<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()"> + <div class="frameT"> + <div class="frameTC"> + <div class="content"> + <form name="CustomizedForm" action="##ERROR_URL##" method="GET"> + <input type="submit" value="Weiter" + name="Senden"> <input type="hidden" + name="cause" value="##CAUSE##"> <input + type="hidden" name="error" value="##ERROR##"> + </form> + </div> + </div> + </div> + +</body> +</html> diff --git a/pdf-as-web/src/main/resources/template_invoke_redirect.html b/pdf-as-web/src/main/resources/template_invoke_redirect.html new file mode 100644 index 00000000..0f98ffbb --- /dev/null +++ b/pdf-as-web/src/main/resources/template_invoke_redirect.html @@ -0,0 +1,56 @@ +<!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"> +<style type="text/css"> +div.frameT { + width: 100%; + padding: 0; + display: table; + height: 100%; + position: absolute; + top: 0; + left: 0; + margin: 0; +} + +div.frameTC { + padding: 0; + vertical-align: middle; + display: table-cell; + margin: 0; +} + +div.content { + width: 600px; + background-color: #fff; + margin: 0 auto; + text-align: left; + padding: 10px; +} +</style> +<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()"> + <div class="frameT"> + <div class="frameTC"> + <div class="content"> + <form name="CustomizedForm" action="##INVOKE_URL##" method="GET"> + <input type="submit" value="Weiter" + name="Senden"> + <input type="hidden" name="pdfurl" value="##PDFURL##"> + <input type="hidden" name="pdflength" value="##PDFLENGTH##"> + </form> + </div> + </div> + </div> + +</body> +</html> |