diff options
author | ivan <ivan> | 2010-11-07 00:56:35 +0000 |
---|---|---|
committer | ivan <ivan> | 2010-11-07 00:56:35 +0000 |
commit | 2d73473ce78c22160b618e93802a9551c9c77d69 (patch) | |
tree | 8d994b6c1ee7deccdd38140f49feb1ecafbc3986 /httemplate/edit/svc_cert/import_privatekey.html | |
parent | 36c606eedba19978d1b5e0e1bf30d3069f28be64 (diff) |
certificates ala communigate, RT#7515
Diffstat (limited to 'httemplate/edit/svc_cert/import_privatekey.html')
-rw-r--r-- | httemplate/edit/svc_cert/import_privatekey.html | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/httemplate/edit/svc_cert/import_privatekey.html b/httemplate/edit/svc_cert/import_privatekey.html new file mode 100644 index 000000000..52e6002f8 --- /dev/null +++ b/httemplate/edit/svc_cert/import_privatekey.html @@ -0,0 +1,28 @@ +<% include('/elements/header-popup.html', 'Import private key' ) %> + +<% include('/elements/error.html') %> + +<FORM NAME="ImportKeyForm" ACTION="<% $p %>process/svc_cert.cgi" METHOD="POST"> + +<INPUT TYPE="hidden" NAME="svcnum" VALUE="<% $svcnum %>"> +<INPUT TYPE="hidden" NAME="pkgnum" VALUE="<% $pkgnum %>"> +<INPUT TYPE="hidden" NAME="svcpart" VALUE="<% $svcpart %>"> + +<TEXTAREA NAME="privatekey" 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; +$cgi->param('pkgnum') =~ /^(\d*)$/ or die 'illegal pkgnum'; +my $pkgnum = $1; +$cgi->param('svcpart') =~ /^(\d*)$/ or die 'illegal svcpart'; +my $svcpart = $1; + +</%init> |