<?
//Basmati -- Version 2.0P
//Copyright 2000, James B. Bassett (hide@address.com)
//All rights reserved. Please read enclosed license.
//Module: facultycheckstudentgrade.php
include("../main.inc.php");
list($ulvl, $loggedin) = check_auth();
if(($ulvl < 25)){
print_header("Error");
echo "Sorry You Do Not have a High Enough User Level to use the Admin Pages.";
print_footer();
exit;
}
print_header("Gradebook:Lookup Grade");
?>
<body bgcolor=white>
<form method=get action=showreportcard.php>
<table border = 0>
<tr>
<td><input type=text name=sid> </td>
<td><input type=submit></td>
<tr>
<td>Student ID</td><td></td>
</tr>
</table>
</form>
<?
print_footer();
?>