01: #!c:\Perl\bin\perl 02: use warnings; 03: use strict; 04: use CGI ':standard'; ED: use constant CONSTANT1 => '../perlscript1.pl'; ED: use constant CONSTANT2 => '../perlscript2.pl'; 05: my $htmlPage = CGI->new; 06: 07: print "\n

ID/パスワードを忘れた方は"; 08: print $htmlPage->a( { -href => CONSTANT2 09: , -target => '_self' }, 'こちら' ); 10: print "

\n

"; 11: print $htmlPage->a( { -href => CONSTANT1 12: , -target => '_self' }, '利用規約' ); 13: print "

";