The buttonbar at the top of each page is now a fixed 'div' element
[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.4 $
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.4  2007-11-21 14:38:06  arjen
31    The buttonbar at the top of each page is now a fixed 'div' element
32    instead of a framed page.
33    Contributed by Edwin Nadorp.
34
35    Revision 1.3  2003/02/13 09:01:29  arjen
36    All web interface pages use the page class.
37
38 ******************************/
39
40 // RCSID = "$Id: login.php,v 1.4 2007-11-21 14:38:06 arjen Exp $";
41
42 ini_set('include_path', '.:./classes:../phpclasses');
43 require_once('page.class.php');
44 //session_start();
45
46 $login_page = new page("Gnucomo Login");
47
48 $login_page->Showpage();
49
50 ?>