summaryrefslogtreecommitdiff
path: root/httemplate/edit/svc_cert/import_certificate.html
diff options
context:
space:
mode:
Diffstat (limited to 'httemplate/edit/svc_cert/import_certificate.html')
-rw-r--r--httemplate/edit/svc_cert/import_certificate.html22
1 files changed, 0 insertions, 22 deletions
diff --git a/httemplate/edit/svc_cert/import_certificate.html b/httemplate/edit/svc_cert/import_certificate.html
deleted file mode 100644
index 337a7419e..000000000
--- a/httemplate/edit/svc_cert/import_certificate.html
+++ /dev/null
@@ -1,22 +0,0 @@
-<% include('/elements/header-popup.html', 'Import issued certificate' ) %>
-
-<% include('/elements/error.html') %>
-
-<FORM NAME="ImportKeyForm" ACTION="<% $p %>process/svc_cert.cgi" METHOD="POST">
-
-<INPUT TYPE="hidden" NAME="svcnum" VALUE="<% $svcnum %>">
-
-<TEXTAREA NAME="certificate" COLS=64 ROWS=15 STYLE="font-family:monospace"></TEXTAREA>
-
-<BR><BR>
-<INPUT TYPE="submit" VALUE="Import">
-
-</FORM>
-</BODY>
-</HTML>
-<%init>
-
-$cgi->param('svcnum') =~ /^(\d*)$/ or die 'illegal svcnum';
-my $svcnum = $1;
-
-</%init>