diff options
Diffstat (limited to 'pdf-as-web/src/main/webapp/index.jsp')
| -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> | 
