All web interface pages use the page class.
[gnucomo.git] / src / web / login.php
1 <?php
2
3 /**************************************************************************
4 **  (c) Copyright 2003, Andromeda Technology & Automation
5 ** This is free software; you can redistribute it and/or modify it under the
6 ** terms of the GNU General Public License, see the file COPYING.
7 ***************************************************************************
8 ** MODULE INFORMATION *
9 ***********************
10 **      FILE NAME      : login.php
11 **      SYSTEM NAME    : Gnucomo - Gnu Computer Monitoring
12 **      VERSION NUMBER : $Revision: 1.3 $
13 **
14 **  DESCRIPTION      : The entry page for the Gnucomo web interface
15 **
16 **  EXPORTED OBJECTS : 
17 **  LOCAL    OBJECTS : 
18 **  MODULES  USED    :
19 ***************************************************************************
20 **  ADMINISTRATIVE INFORMATION *
21 ********************************
22 **      ORIGINAL AUTHOR : Arjen Baart - arjen@andromeda.nl
23 **      CREATION DATE   : Dec 03, 2002
24 **      LAST UPDATE     : Feb 08, 2003
25 **      MODIFICATIONS   : 
26 **************************************************************************/
27
28 /*****************************
29    $Log: login.php,v $
30    Revision 1.3  2003-02-13 09:01:29  arjen
31    All web interface pages use the page class.
32
33 ******************************/
34
35 // RCSID = "$Id: login.php,v 1.3 2003-02-13 09:01:29 arjen Exp $";
36
37 ini_set('include_path', '.:./classes:../phpclasses');
38 require_once('page.class.php');
39
40 $login_page = new page("Gnucomo Login");
41
42 $login_page->Showpage();
43
44 ?>