blob: caacf9c0cabcc6ba234a8f3864d6e76f80f72fdf [file] [log] [blame]
<?php
#*****************************************************************************
#
# login.inc.php
#
# Author: Denis Roy
# Date: 2004-08-06
#
# Description: UI for User login
#
# HISTORY:
#
#****************************************************************************
include("../html/header.php");
?>
<td class="normal" valign="top">
<form name="form1" method="post">
<center>
<table width="85%" border="0">
<tr>
<td colspan="3">
<br />
<font class="app_title">Welcome to <?= $App->getAppName() ?></font><br />
<font class="normal">Welcome to the Eclipse Foundation's systems. Please be aware that your use of these servers must be for purposes approved by the Eclipse Management Organization (EMO) and/or an Eclipse Project Management Committee (PMC).
</font>
<br /><br />
<font class="error"><?= $_uid != "" ? "Error: your User ID and/or password are incorrect. Please try again, or contact the Eclipse Webmaster" : "" ?></font>
</td>
</tr>
<tr>
<td width="200"></td>
<td width="40%">
<table width="100%" border="0" cellpadding="1" cellspacing="0">
<tr>
<td width="100%" class="rect_border">
<table width="100%" cellpadding="3" cellspacing="0" border="0">
<tr>
<td class="rect_header">Sign-in</td>
</tr>
</table>
</td>
</tr>
<tr>
<td width="100%" class="rect_border">
<table height="200" width="100%" cellpadding="3" cellspacing="0" border="0">
<tr class="white_back">
<td>
<table>
<tr>
<td class="normal" colspan="2">
Please log in using your eclipse.org committer User ID and password (the one you use for CVS - not bugzilla).<br /><br />
</td>
</tr>
<tr>
<td class="normal">Eclipse.org User ID</td>
<td><input type="text" name="uid" size="16" maxlength="100" value="<?= $_uid ?>" /></td>
</tr>
<tr>
<td class="normal">Password</td>
<td class="small"><input type="password" name="password" size="16" maxlength="16" value="" /></td>
</tr>
<tr>
<td></td>
<td><input type="button" name="Signin" onclick="fnSignIn();" value="Sign-in" /></td>
</tr>
</table>
</td>
</tr>
</table>
</td>
</tr>
</table>
</td>
<td width="200"></td>
</tr>
</table>
</center>
<input type="hidden" name="state" value="signin" />
</form>
<script language="javascript">
document.form1.uid.focus();
function fnSignIn() {
document.form1.submit();
}
</script>
</td>
<?php
include("../html/footer.php");
?>