]> git.ipfire.org Git - ipfire-2.x.git/blob - html/cgi-bin/credits.cgi
a8cc23f7d84605ff702b37c5c508df3f8e93ec66
[ipfire-2.x.git] / html / cgi-bin / credits.cgi
1 #!/usr/bin/perl
2 #
3 # IPFire CGIs
4 #
5 # This code is distributed under the terms of the GPL
6 #
7 # (c) The IPFire Team
8 #
9
10 use strict;
11
12 # enable only the following on debugging purpose
13 #use warnings;
14 #use CGI::Carp 'fatalsToBrowser';
15
16 require 'CONFIG_ROOT/general-functions.pl';
17 require "${General::swroot}/lang.pl";
18 require "${General::swroot}/header.pl";
19
20 &Header::showhttpheaders();
21
22 &Header::openpage($Lang::tr{'credits'}, 1, '');
23
24 &Header::openbigbox('100%', 'center');
25
26 &Header::openbox('100%', 'left', $Lang::tr{'credits'});
27
28 print <<END
29 <br /><center><b>Besuchen sie uns auf <a href='http://www.ipfire.org/'>http://www.ipfire.org/</a></b></center>
30 <br /><center><b>Visit us on <a href='http://www.ipfire.org/'>http://www.ipfire.org/</a></b></center>
31 <p>
32 <br /><center><b>IPFire is based on IPFire and Smoothwall. Many thanks to its developers for this great piece of software.</b></center>
33
34 <p><b>Credits:</b><br />
35 Projektleiter - Michael Tremer
36 (<a href='mailto:m.s.tremer\@gmail.com'>m.s.tremer\@gmail.com</a>)<br />
37 Projektmitglied &amp; Sponsor - Detlef Lampart
38 (<a href='mailto:info\@delaco.de'>info\@delaco.de</a>)<br />
39 Projektmitglied &amp; Webinterfacedesign - Benedikt Correll
40 (<a href='mailto:benedikt_correll\@hotmail.com'>benedikt_correll\@hotmail.com</a>)<br />
41 ...to be continued
42 </p>
43 END
44 ;
45
46 &Header::closebox();
47
48 &Header::closebigbox();
49
50 &Header::closepage();