aboutsummaryrefslogtreecommitdiff
path: root/webapp/jsp/verifyupload.jsp
diff options
context:
space:
mode:
Diffstat (limited to 'webapp/jsp/verifyupload.jsp')
-rw-r--r--webapp/jsp/verifyupload.jsp98
1 files changed, 98 insertions, 0 deletions
diff --git a/webapp/jsp/verifyupload.jsp b/webapp/jsp/verifyupload.jsp
new file mode 100644
index 0000000..ab63e2f
--- /dev/null
+++ b/webapp/jsp/verifyupload.jsp
@@ -0,0 +1,98 @@
+<%@ page import="at.knowcenter.wag.egov.egiz.web.FormFields" %>
+<%
+ boolean freetext_entry = false;
+ String parameter_freetext = (String)request.getParameter(FormFields.PARAMETER_FREE_TEXT_ENTRY);
+ if (parameter_freetext != null && parameter_freetext.equals(FormFields.VALUE_TRUE))
+ {
+ freetext_entry = true;
+ }
+%>
+<!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 pr&uuml;fen</div>
+
+
+<form name="submitform" enctype="multipart/form-data" method="post" action="/pdf-as/Verify">
+
+<div class="contentsdiv">
+
+<%
+ if (freetext_entry)
+ {
+%>
+<div>Vollst&auml;ndiger Dokumenttext:</div>
+<textarea class="previewfield" cols="80" rows="14" name="<%= FormFields.FIELD_UPLOAD %>">Hier bitte den vollständigen Dokumenttext samt Signaturblock eingeben.</textarea>
+<br />
+<%
+ }
+ else
+ {
+%>
+<br />
+
+<label class="uploadlabel">PDF Datei:</label>
+
+<input class="field" size="20" type="file" name="<%= FormFields.FIELD_UPLOAD %>" accept="application/pdf,text/plain" />
+<%
+ }
+%>
+
+<br />
+
+<label class="uploadlabel">Pr&uuml;f Applikation:</label>
+
+<%= FormFields.generateConnectorSelectBox() %>
+
+<%
+ if (freetext_entry)
+ {
+%>
+
+<br />
+
+<label class="uploadlabel">Pr&uuml;f Modus:</label>
+
+<span>textuell</span>
+<!--
+<input type="hidden" name="<%= FormFields.FIELD_MODE %>" value="<%= FormFields.VALUE_MODE_TEXTUAL %>" />
+-->
+<%
+ }
+ else
+ {
+%>
+<!--
+<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>
+</select>
+-->
+<%
+ }
+%>
+
+<br />
+<br />
+
+
+<label class="uploadlabel">&nbsp;</label>
+<input type="hidden" name="<%= FormFields.FIELD_PREVIEW %>" value="false" />
+<input class="button" type="submit" value="Alle pr&uuml;fen" />
+<input class="button" type="submit" value="Signaturen auflisten" 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