diff options
author | Andreas Fitzek <andreas.fitzek@iaik.tugraz.at> | 2014-06-10 10:24:54 +0200 |
---|---|---|
committer | Andreas Fitzek <andreas.fitzek@iaik.tugraz.at> | 2014-06-10 10:24:54 +0200 |
commit | 8aaf35c6e1da8d49e1c36d9b691ae00fb3730804 (patch) | |
tree | 8daf7ad8dfa6b074c5967b578135bc87c46673c1 /pdf-as-web/src/main/webapp | |
parent | 68a6b55068c5d5a1a2656f642c6b870fbe3cd141 (diff) | |
download | pdf-as-4-8aaf35c6e1da8d49e1c36d9b691ae00fb3730804.tar.gz pdf-as-4-8aaf35c6e1da8d49e1c36d9b691ae00fb3730804.tar.bz2 pdf-as-4-8aaf35c6e1da8d49e1c36d9b691ae00fb3730804.zip |
process locale Parameter and provide it to BKU4.0.0-RC3
Diffstat (limited to 'pdf-as-web/src/main/webapp')
-rw-r--r-- | pdf-as-web/src/main/webapp/index.jsp | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/pdf-as-web/src/main/webapp/index.jsp b/pdf-as-web/src/main/webapp/index.jsp index 42f2a168..d8729e8f 100644 --- a/pdf-as-web/src/main/webapp/index.jsp +++ b/pdf-as-web/src/main/webapp/index.jsp @@ -7,8 +7,8 @@ <body> <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"> + <input type="hidden" name="source" id="source" value="internal" /> + <input type="file" name="pdf-file" id="pdf-file" accept="application/pdf"> <% if (request.getAttribute("FILEERR") != null) { %> @@ -60,6 +60,12 @@ <% } %> + + <select name="locale" id="locale" size="3"> + <option>EN</option> + <option>DE</option> + </select> + </form> <p><small>Version: <%= PdfAsHelper.getVersion() %> - <%= PdfAsHelper.getSCMRevision() %></small></p> |