summaryrefslogtreecommitdiff
path: root/httemplate/edit/svc_cert
diff options
context:
space:
mode:
authorivan <ivan>2010-11-07 23:47:04 +0000
committerivan <ivan>2010-11-07 23:47:04 +0000
commit874ad675da1321638b374d0b574231d7fa577196 (patch)
tree3ca9ad29f55550256e676ac4a752dedbbafa0f17 /httemplate/edit/svc_cert
parent5ac9e46a92f4eefd795f97643f3e8f62ec1a2b26 (diff)
certificates ala communigate, RT#7515
Diffstat (limited to 'httemplate/edit/svc_cert')
-rw-r--r--httemplate/edit/svc_cert/import_certificate.html22
1 files changed, 22 insertions, 0 deletions
diff --git a/httemplate/edit/svc_cert/import_certificate.html b/httemplate/edit/svc_cert/import_certificate.html
new file mode 100644
index 000000000..337a7419e
--- /dev/null
+++ b/httemplate/edit/svc_cert/import_certificate.html
@@ -0,0 +1,22 @@
+<% 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>