Note: You do not need to customize the TeamConnect login page for LDAP Authentication. If you customize the login page, however, you must reference the j_spring_security_check servlet, the user field input value should correspond to the j_username variable, the password field input value should correspond to the j_password variable as shown in the example below.
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://
www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>Log In - TeamConnect 3.0</title>
</head>
<body scroll="no">
<div id="horizon" style="margin-top:150px">
<div id="content">
<div id="contentText">
<center>
<table class="logincontent" border="0" width="600" cellpadding="0" cellspacing="0">
<tr>
<td style="background-image: url(images/bg_login.jpg); background-repeat: no-repeat;">
<!-- LOGIN TABLE [BEGIN] -->
<table border="0" width="600" cellpadding="0" cellspacing="0">
<tr>
<td colspan="2" style="line-height: 1.5em;" align="center">
</td>
</tr>
<tr>
<td height="150" align="center">
<form method="post" id="loginForm" name="loginForm" action="j_spring_security_check">
<table border="0" cellpadding="5" cellspacing="0" style="margin: 10px;">
<tr valign="middle">
<td width="90" align="right" nowrap><b>User Name:</b></td>
<td align="left"><input type="text" name="j_username" id="j_username" size="18" maxLength=50 tabindex="1"/></td>
</tr>
<tr valign="middle">
<td align="right" nowrap><b>Password:</b></td>
<td align="left"><input autocomplete="off" type="password" name="j_password" id="j_password" size="18" maxLength=50 tabindex="2"/></td>
</tr>
<tr valign="middle">
<td align="right" nowrap> </td>
<td colspan="2" align="left" class="texthdr" nowrap><input type="submit" name="submit" value="Log In" class="mainSearchBtn"></td>
</tr>
</table>
</form>
</td>
</tr>
</table>
</td>
</tr>
</table>
</center>
</div>
</div>
</div>
</body>
<script>
$("j_username").focus();
</script>
</html>