6 lines
134 B
Perl
6 lines
134 B
Perl
#!/usr/bin/perl
|
|
use warnings;
|
|
use strict;
|
|
use CGI;
|
|
my $cgi=new CGI;
|
|
print $cgi->header('text/html','401 Authorization Required'); |