<?php
include ("librarylib.php");
session_start();
html_begin($choralcfg_sitename, $choralcfg_sitename, $choralcfg_cssfile);
print "<TABLE width=\"100%\" border=\"0\" cellpadding=\"0\" ".
"cellspacing=\"10\">\n";
print "<TR><TD valign=\"top\" nowrap>\n";
include("links.phtml");
print "</TD>\n";
print "<TD>";
//Login stuff here.
print ("<FORM METHOD=\"POST\" ACTION=\"./index.php\" >\n".
"<table>\n".
"<TR><TD align=right>$choral_username </TD><TD><input type=\"text\" name=\"login_user\" size=10 ".
"maxlength=10></TD></TR>\n<TR><TD align=right>$choral_password </TD><TD><input type=\"password\" ".
"name=\"login_passwd\" size=10 maxlength=10></TD></TR>\n".
"<TR><TD colspan=2 align=center><input type=\"submit\" value=\"$choral_captionlogin\"></TD></TR>\n".
"</table>\n".
"</FORM>\n"
);
library_footer();
print "</TD></TABLE>";
html_end();
?>