diff options
| author | ivan <ivan> | 2010-11-07 23:47:05 +0000 |
|---|---|---|
| committer | ivan <ivan> | 2010-11-07 23:47:05 +0000 |
| commit | 9d8fe677d8b1aa8273d5379e14da325e33d52bb4 (patch) | |
| tree | cca994b0e7919bc61f9683cde3252aa45da67c83 /httemplate/edit/svc_cert | |
| parent | 729ceea3edac7b5364aa572c894991a979a53f2b (diff) | |
certificates ala communigate, RT#7515
Diffstat (limited to 'httemplate/edit/svc_cert')
| -rw-r--r-- | httemplate/edit/svc_cert/import_certificate.html | 22 |
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> |
