diff options
Diffstat (limited to 'pdf-as-web/src')
-rw-r--r-- | pdf-as-web/src/main/webapp/jsp/null_request_page.jsp | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/pdf-as-web/src/main/webapp/jsp/null_request_page.jsp b/pdf-as-web/src/main/webapp/jsp/null_request_page.jsp index 0117b0b..58442d6 100644 --- a/pdf-as-web/src/main/webapp/jsp/null_request_page.jsp +++ b/pdf-as-web/src/main/webapp/jsp/null_request_page.jsp @@ -97,7 +97,7 @@ <title><fmt:message key="nullrequestpage.title"/></title>
<% if (!startedFromIFrame) { %>
- <link rel="stylesheet" type="text/css" href="<%=baseUrl%>/pdfas-styles.css" />
+ <link rel="stylesheet" type="text/css" href="<%=baseUrl%>/css/pdfas-styles.css" />
<!-- <link rel="stylesheet" href="<%=serverUrl%>style.css" type="text/css" /> -->
<% } else { %>
<link rel="stylesheet" type="text/css" href="<%=baseUrl%>/css/extern-styles.css" />
@@ -166,6 +166,12 @@ parentDocument.getElementById('localbkubutton').style.display = 'block';
pause(700);
}
+
+ //In this case deactivate the backlink, so that signature can only be canceled
+ //from the ccs
+ if (<%=isServerBKU%>==false) {
+ parentDocument.getElementById('backlink').style.display = 'none';
+ }
//parentDocument.getElementById('pdfalink').style.display = 'none';
//parentDocument.getElementById('pdfalinkdeaktiviert').style.display = 'block';
//parentDocument.getElementById('notelink').style.display = 'none';
|