
Of all the files listed in the main directory of this package, index.php is the
most likely candidate to be a top-level page. Parsing through the index.php file,
line 156 would most likely catch our eye.
156 // If User is Not Logged In, Display The Login Page
Line 156 shows a typical informative comment.This comment reveals the
portion of the code that would display a login page. Scrolling down farther in
the login page code, we come to lines 173–178:
173 <td width=80>Username: </td>
174 <td><input tabindex=1 type=text
name=username value='$lastusername' style=\"width:134\"></td>
175 </tr>
176 <tr>
177 <td>Password: </td>
178 <td><input type=password name=password ...