#!/usr/bin/perl
###########################################################
#
# forumhome.cgi
# Version 0.1  12/6//2004
# Ben Martin
#
###########################################################
use strict;
use warnings;
use CGI;
#use CGI::Carp qw(fatalstobrowser);
use ForumHTML;



  print "content-type: text/html\n\n";
  print ForumHTML->page_top("Perl Forum");
  print  qq{<table>
            <tr>
            <td width="66%">
              This is my final project for Web Programming with PERL.<br>
              an online forum which a user can log in and out of,
              post replies to existing topics, and create new topics.
              This forum uses PERL modules to handle data and also to<br>
              generate frequently used HTML.  It also uses CGI scripts as the
              interface between the user and the data.<p>
              Building this forum I started with the Post and User object modules
              and wrote testing programs for them that run at the command line
              Links to the source code, test programs, and documentation are listed
              below<br>
            </td>
            <td>
             <a href="signin.cgi">Sign In</a>
             <a href="newuser.cgi">Create User</a>
            </td>
           </tr>
           <table>
          };
  print ForumHTML->page_bottom();


