blob: d010fcdad59dab100e7ae875252710fab8e6f81e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
% if ( $svc_acct->cf_privatekey ) {
<div class="fscontainer">
<div class="fsbox">
<div class="fsbox-title">
<span class="left">Card Fortress</span>
</div>
<PRE><FONT STYLE="font-family:monospace"><% $svc_acct->cf_privatekey %></FONT></PRE>
<% $conf->config('svc_acct-cf_privatekey-message') %>
%#XXX and then there should be a remove link to get rid of it
% }
</div>
</div>
<%init>
my %opt = @_;
my $svc_acct = $opt{'svc_acct'};
my $conf = new FS::Conf;
</%init>
|