#!/usr/bin/perl ######### Begin optional setup ########### # Will be displayed in login screen $yourname = 'AAK'; # color of title on login screen $titlecolor = '#800000'; # Rules are shown on login screen. # add or delete as necessary. $rules[0], $rules[1], and so on. #$rules[0] = 'Geben Sie einen Chat-Namen ein, dieser wird allen Teilnehmern angezeigt.'; #$rules[1] = 'Ein Passwort ist nicht notwendig.'; # Image for background of login screen $backgroundimage = ''; # Background color of login screen $backgroundcolor = '#FFFFFF'; # Text color of login screen $textcolor = '#000000'; # link color of login screen $linkcolor = '#0000FF'; # Visited link color of login screen $visitedcolor = '#0000FF'; # Active link color of login screen $activecolor = '#FF0000'; # Any additional things you want added to # the bottom of the login screen. #$additional = '
'; # $additional .= 'You can add more stuff here.'; # $additional .= 'just uncomment these lines'; ######### End Setup ############# &Parse_Form; if (!$formdata{'cname'}) { if ($backgroundimage ne '') { $backgroundimage = 'background="' . $backgroundimage . '"'; } foreach $rule (@rules) { $TheRules .= $rule . '$TheRules
$additional