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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
|
<% include('/elements/header-popup.html', { title=>$title, nobr=>1 } ) %>
<% include('/elements/init_overlib.html') %>
<CENTER>
% if ( $agentnum ) {
<IMG SRC="<%$fsurl%>view/logo-agent.cgi?agentnum=<%$agentnum%>" BORDER="0" WIDTH=92 HEIGHT=62><BR>
% my $url = $conf->config('company_url', $agentnum);
% if ( $url ) {
<BR><BR>
<FONT SIZE="+1"><A HREF="<% $conf->config('company_url', $agentnum) %>" TARGET="_top"><%$title%> homepage</A></FONT>
% }
% } else {
<IMG SRC="<%$fsurl%>images/small-logo.png" BORDER="0"><BR>
<H3>version <% $FS::VERSION %></H3>
% }
</CENTER>
<CENTER>
% if ( $agentnum ) {
<BR><BR>
<FONT SIZE="-2">Based on Freeside version <% $FS::VERSION %><BR>
% } else {
<FONT SIZE="-1">
% }
© 2018 Freeside Internet Services, Inc.<BR>
All rights reserved.<BR>
Licensed under the terms of the<BR>
GNU <b>Affero</b> General Public License.<BR>
</FONT>
</CENTER>
<BR>
<CENTER>
% if ( $agentnum ) {
<FONT SIZE="-2">
% }
<A HREF="credits.html">Credits</A>
<A HREF="javascript:void(0)" onClick="openLicense()">License</A>
<BR><BR>
<A HREF="http://www.freeside.biz/freeside" TARGET="_top">Freeside homepage</A>
% if ( $agentnum ) {
</FONT>
% }
</CENTER>
<BR>
% unless ( $agentnum ) {
<CENTER>
<FONT SIZE="-3">"No one's noticed, but the band's all packed and gone / Was it ever here at all?" - J. P. Barlow</FONT>
</CENTER>
% }
<SCRIPT TYPE="text/javascript">
function openLicense() {
parent.<% include('/elements/popup_link_onclick.html',
'action' => $fsurl.'docs/license.html',
'label' => 'License',
'actionlabel' => 'License',
'width' => 600,
'height' => 360,
'color' => '#7e0079',
'nofalse' => 1,
)
%>
}
</SCRIPT>
</BODY>
</HTML>
<%init>
my $conf = new FS::Conf;
my $agentnum = $conf->config('brand-agent');
my $title = $agentnum ? $conf->config('company_name', $agentnum) : 'Freeside';
</%init>
|