Source code:
<?php
 require_once('include_pet_fns.php');
 do_html_header('Log In if you can...');
 echo '<table border="0" cellspacing="0" cellpadding="0" width="750">';
 echo '<tr>';
 echo  '<td width="40%" style="padding-left:5px;padding-right:5px">';
   display_login_form();
 echo  '</td>';
 echo  '<td style="padding-right:105px;padding-left:5px">';
 //echo '<img alt="ODIE_LOVES_GARFIELD (31K)" src="images/ODIE_LOVES_GARFIELD.gif" height="250" width="330" />';
 display_forgot_form();
 echo  '</td>';
 echo '</tr>';
 echo '<tr>';
 echo '<td colspan="2" style="padding-left:260px;padding-right:5px">';
 display_button('index.php','back', 'Back');
 echo '</td>';
 //echo '<td> </td>';
 echo '</tr>';
 echo '<tr>';
 echo '<td> </td><td> </td>';
 echo '</tr>';
 echo '</table>';
 do_html_footer();
?>