You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
315 B
18 lines
315 B
4 months ago
|
#!/usr/bin/perl
|
||
|
#
|
||
|
# $Id: cindex.pl,v 1.3 2006/01/23 21:39:30 ddoughty Exp $
|
||
|
#
|
||
|
# Source File: login.pl
|
||
|
|
||
|
# Get config
|
||
|
require 'sitecfg.pl';
|
||
|
|
||
|
&app_initialize;
|
||
|
|
||
|
print "Content-Type: text/html\n\n";
|
||
|
|
||
|
$SESSION{'clid'} = $FORM{'clid'};
|
||
|
&get_client_profile($FORM{'clid'});
|
||
|
&LanguageSupportInit();
|
||
|
&show_template("cindex");
|