aboutsummaryrefslogtreecommitdiff
path: root/webapp/jsp/signupload.jsp
diff options
context:
space:
mode:
authorknowcenter <knowcenter@7b5415b0-85f9-ee4d-85bd-d5d0c3b42d1c>2007-05-17 15:25:10 +0000
committerknowcenter <knowcenter@7b5415b0-85f9-ee4d-85bd-d5d0c3b42d1c>2007-05-17 15:25:10 +0000
commit0184c140614b99a5037cbd8f969b7512888cd37d (patch)
tree9f2f3ea1edf14e05df735a4ebe9402e3f5e00d6c /webapp/jsp/signupload.jsp
parenta3ecdb4630518b8dc00d0183bed435d8131b578c (diff)
downloadpdf-as-3-0184c140614b99a5037cbd8f969b7512888cd37d.tar.gz
pdf-as-3-0184c140614b99a5037cbd8f969b7512888cd37d.tar.bz2
pdf-as-3-0184c140614b99a5037cbd8f969b7512888cd37d.zip
webapp
git-svn-id: https://joinup.ec.europa.eu/svn/pdf-as/trunk@86 7b5415b0-85f9-ee4d-85bd-d5d0c3b42d1c
Diffstat (limited to 'webapp/jsp/signupload.jsp')
-rw-r--r--webapp/jsp/signupload.jsp81
1 files changed, 81 insertions, 0 deletions
diff --git a/webapp/jsp/signupload.jsp b/webapp/jsp/signupload.jsp
new file mode 100644
index 0000000..1474da5
--- /dev/null
+++ b/webapp/jsp/signupload.jsp
@@ -0,0 +1,81 @@
+<%@ page import="at.knowcenter.wag.egov.egiz.web.FormFields" %>
+<%@ page import="at.knowcenter.wag.egov.egiz.web.SessionAttributes" %>
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+<html>
+<head>
+ <title>PDF-AS Amtssignaturen</title>
+ <link rel="stylesheet" type="text/css" href="/pdf-as/css/styles.css" />
+</head>
+<body>
+<div class="maindiv">
+<h1>PDF-AS Amtssignaturen</h1>
+<div class="mainframe">
+<div class="mainheadline">Dokument Signatur erstellen</div>
+
+<form name="submitform"
+ enctype="multipart/form-data"
+ accept-charset="UTF-8"
+ method="post"
+ action="/pdf-as/Sign">
+
+<div class="contentsdiv">
+
+<!--
+<label class="uploadlabel">Name:</label><%= request.getSession().getAttribute(SessionAttributes.ATTRIBUTE_USER_NAME) %>
+-->
+<br />
+<br />
+
+<label class="uploadlabel">PDF Datei:</label>
+
+<input class="field" size="20" type="file" name="<%= FormFields.FIELD_UPLOAD %>" accept="application/pdf" />
+
+<br />
+
+<label class="uploadlabel">Signatur Typ:</label>
+
+<%= FormFields.generateTypeSelectBox() %>
+
+<br />
+
+<label class="uploadlabel">Signier Applikation:</label>
+
+<%= FormFields.generateConnectorSelectBox() %>
+
+<br />
+
+<label class="uploadlabel">Signier Modus:</label>
+
+<select name="<%= FormFields.FIELD_MODE %>" class="field">
+<option value="<%= FormFields.VALUE_MODE_BINARY %>" selected="selected">bin&auml;r</option>
+<option value="<%= FormFields.VALUE_MODE_TEXTUAL %>">textuell</option>
+<option value="<%= FormFields.VALUE_MODE_DETACHED %>">detached</option>
+</select>
+
+<br />
+
+<label class="uploadlabel">Dokument:</label>
+<select name="<%= FormFields.FIELD_DOWNLOAD %>" class="field" >
+<option value="<%= FormFields.VALUE_DOWNLOAD_INLINE %>" selected="selected">im Browser anzeigen</option>
+<option value="<%= FormFields.VALUE_DOWNLOAD_ATTACHMENT %>">als Download</option>
+</select>
+
+
+<br />
+<br />
+
+
+<label class="uploadlabel">&nbsp;</label>
+<input type="hidden" name="<%= FormFields.FIELD_PREVIEW %>" value="false" />
+<input class="button" type="submit" value="Signatur erstellen" />
+<input class="button" type="submit" value="Vorschau" onclick="document.submitform.<%= FormFields.FIELD_PREVIEW %>.value='true'" />
+
+
+</div>
+</form>
+
+</div>
+<a class="big" href="/pdf-as/">zurück</a>
+</div>
+</body>
+</html> \ No newline at end of file