diff options
author | Tobias Kellner <tobias.kellner@iaik.tugraz.at> | 2014-03-14 22:28:52 +0100 |
---|---|---|
committer | Andreas Fitzek <andreas.fitzek@iaik.tugraz.at> | 2014-04-01 16:59:34 +0200 |
commit | 6a7fcab53bb00b4eb59cc41b1a8de81ab81e2b19 (patch) | |
tree | 71edb2f73b1d0e924ff4a1a98b00f8c0a7efb3a3 /pdf-as-web/src/main/webapp | |
parent | 4f1e143c6eac9e1b57b2400bf5b0761a8b072419 (diff) | |
download | pdf-as-4-6a7fcab53bb00b4eb59cc41b1a8de81ab81e2b19.tar.gz pdf-as-4-6a7fcab53bb00b4eb59cc41b1a8de81ab81e2b19.tar.bz2 pdf-as-4-6a7fcab53bb00b4eb59cc41b1a8de81ab81e2b19.zip |
HTML fixes
Diffstat (limited to 'pdf-as-web/src/main/webapp')
-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 |
3 files changed, 6 insertions, 8 deletions
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> <% |