1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66
|
<?
# IRM - The Information Resource Manager
# Copyright (C) 1999 Yann Ramin
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License (in file COPYING) for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
#
# $Id: index.php3,v 1.7 2000/05/04 01:30:37 atrus Exp $
#
################################################################################
# CHANGELOG #
################################################################################
# 7/22/99 - Keith Schoenefeld: Added CHANGELOG #
# 8/20/99 - Yann Ramin: Added infonational prompts
################################################################################
?>
<HTML><HEAD><TITLE>IRM - The Information Resource Manager</TITLE>
</HEAD>
<BODY BGCOLOR=#FFFFFF>
<FONT FACE="Arial, Helvetica">
<img src=irm-jr1.jpg>
<br>
<h3>IRM Login</h3>
<form method=post action=login.php3>
Username: <input type=text name=name>
<br>Password: <input type=password name=password>
<br>Database:
<select name=dbuse size=1>
<!-- Multiple database selection options. The default is to use a database called 'irm'. -->
<!-- To add more, simply add more option value=dbname lines here. -->
<option value=irm>IRM</option>
<!-- End Multi-Database -->
</select>
<br>
<input type=submit value=Login>
</form>
<br><br>
<h3>Introduction to IRM</h3>
IRM is a multi-user computer, software, periphial and problem tracking system.
You can use IRM, depending on your user-level, to view, edit, and add
computer systems to a database with an extensive list of fields. You can
also view and post jobs if you have a problem with a computing resource.
More information can be found at the IRM Website: <a href="http://www.redshift.com/~yramin/atp/irm/">www.redshift.com/~yramin/atp/irm</a> or
at the mirror site: <a href="http://irm.schoenefeld.org/">irm.schoenefeld.org</a>.
<br>
</BODY>
</HTML>
|