diff options
Diffstat (limited to 'pdf-as-web/src')
-rw-r--r-- | pdf-as-web/src/main/resources/template_provide.html | 2 | ||||
-rw-r--r-- | pdf-as-web/src/main/webapp/WEB-INF/decorators/default_layout.jsp | 4 | ||||
-rw-r--r-- | pdf-as-web/src/main/webapp/egiz.jsp | 6 | ||||
-rw-r--r-- | pdf-as-web/src/main/webapp/index.jsp | 4 |
4 files changed, 7 insertions, 9 deletions
diff --git a/pdf-as-web/src/main/resources/template_provide.html b/pdf-as-web/src/main/resources/template_provide.html index 5ba884a8..5581f263 100644 --- a/pdf-as-web/src/main/resources/template_provide.html +++ b/pdf-as-web/src/main/resources/template_provide.html @@ -4,6 +4,6 @@ <title>Provide PDF</title> </head> <body> -PDF ready @: <a href="##PDFDATAURL##" download>here</a> +PDF ready @: <a href="##PDFDATAURL##">download here</a> </body> </html> diff --git a/pdf-as-web/src/main/webapp/WEB-INF/decorators/default_layout.jsp b/pdf-as-web/src/main/webapp/WEB-INF/decorators/default_layout.jsp index 9ed40e30..c16d672a 100644 --- a/pdf-as-web/src/main/webapp/WEB-INF/decorators/default_layout.jsp +++ b/pdf-as-web/src/main/webapp/WEB-INF/decorators/default_layout.jsp @@ -5,7 +5,7 @@ <%@page contentType="text/html; charset=UTF-8"%> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en"> <head> -<meta charset="utf-8" /> +<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> <meta http-equiv="X-UA-Compatible" content="IE=edge" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> <meta name="description" content="PDF-Signatur" /> @@ -17,9 +17,7 @@ </head> <body onload="<decorator:getProperty property="body.onload" />"> - <p> <h3>PDF-Signatur</h3> - </p> <p> <decorator:body></decorator:body> diff --git a/pdf-as-web/src/main/webapp/egiz.jsp b/pdf-as-web/src/main/webapp/egiz.jsp index f6086190..7036697f 100644 --- a/pdf-as-web/src/main/webapp/egiz.jsp +++ b/pdf-as-web/src/main/webapp/egiz.jsp @@ -66,9 +66,9 @@ <!--[if IE 8]> <link rel="stylesheet" href="http://www.egiz.gv.at/templates/egiz/css/ie8.css" /> <![endif]--> <script type="text/javascript">var _gaq = _gaq || []; _gaq.push(['_setAccount', 'UA-38726304-2']); _gaq.push(['_trackPageview']); (function() { var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true; ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js'; var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s); })(); </script> -<meta content="text/html; charset=utf-8" http-equiv="Content-Type"> -<meta content="text/css" http-equiv="Content-Style-Type"> -<link rel="stylesheet" type="text/css" href="css/index.css"> +<meta content="text/html; charset=utf-8" http-equiv="Content-Type" /> +<meta content="text/css" http-equiv="Content-Style-Type" /> +<link rel="stylesheet" type="text/css" href="css/index.css" /> <script type="text/javascript" src="./js/common.js"></script> <decorator:head></decorator:head> </head> diff --git a/pdf-as-web/src/main/webapp/index.jsp b/pdf-as-web/src/main/webapp/index.jsp index eba5db46..82458f77 100644 --- a/pdf-as-web/src/main/webapp/index.jsp +++ b/pdf-as-web/src/main/webapp/index.jsp @@ -4,7 +4,7 @@ <title>PDF-Signatur</title> </head> <body> - <form role="form" action="Sign" method="POST" + <form action="Sign" method="POST" enctype="multipart/form-data"> <input type="hidden" name="source" id="source" value="internal" /> <input type="file" name="pdf-file" id="pdf-file" accept="application/pdf"> @@ -20,7 +20,7 @@ <% if (WebConfiguration.getLocalBKUURL() != null) { %> - <img src="assets/img/onlineBKU.png" /> <input type="submit" + <img src="assets/img/onlineBKU.png" /> <button type="submit" value="bku" name="connector" id="bku">Lokale BKU </button> <% |