Maven and JDK 21 Migration

This commit is contained in:
2026-07-16 22:35:34 +05:30
parent 0080857d4e
commit b6c9ee4bf8
1409 changed files with 215496 additions and 35087 deletions

View File

@@ -0,0 +1,123 @@
<%@ page language="java" contentType="text/html; charset=ISO-8859-1"
pageEncoding="ISO-8859-1"%>
<%@taglib uri="http://www.springframework.org/tags/form" prefix="form"%>
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
<!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>
<link href="/matrix/css/div.css" rel="stylesheet" type="text/css" />
<link href="/matrix/css/textbox.css" rel="stylesheet" type="text/css" />
<link href="/matrix/css/table.css" rel="stylesheet" type="text/css" />
<link href="/matrix/css/button.css" rel="stylesheet" type="text/css" />
<script language="javascript" src="/matrix/js/ui/uifuncs.js" type="text/javascript"></script>
<script language="javascript" src="/matrix/js/lib/jsfuncs.js" type="text/javascript"></script>
<script language="javascript" src="/matrix/js/ui/msgdialog.js" type="text/javascript"></script>
<script language="javascript" src="/matrix/js/jquery1.7.2.js" type="text/javascript"></script>
<title>Nimble 1.0 | Login</title>
</head>
<body style="font-family:Tahoma;">
<div id="banner1" style="height:100px;width:80%;">
<img src="/matrix/images/bannerlogo.png" />
</div>
<div id="banner" style="height:100px;width:80%;">
</div>
<div id='loginframe' style="height:180px;width:290px;text-align:center">
<div id='titlebar' class="title">
<img id="icon" src="/matrix/images/optmale.png" />
<img id="close" src="/matrix/images/close.jpg" onclick="javascript:closewindow();" />
<span id="title">Sign In</span>
</div>
<div class="gardientGrey" style="height:150px;text-align:left;">
<form:form id="loginform" method="post" action="authenticatelogin" modelAttribute="login">
<table class="formtable" style="font-size:11pt" cellspacing="0" border="0">
<tr>
<td style="width:80px">&nbsp;</td>
<td></td>
</tr>
<tr>
<td>
&nbsp;&nbsp;Username
</td>
<td>
<form:input type="text" path="Loginid" value="${login.loginid}" class="textbox" id="username" style="width:150px;background-color:#FFFFFF" />
</td>
</tr>
<tr>
<td>
&nbsp;&nbsp;Password
</td>
<td>
<form:input type="password" path="Password" class="textbox" id="password" style="width: 150px" />
</td>
</tr>
<tr>
<td></td>
<td>
<input type="submit" class="button" name="btnlogin" id="btnlogin" value="Login" />
</td>
</tr>
</table>
</form:form>
</div>
</div>
<div id="important" style="bottom:50px;color:#333333;width:90%;background-color:#c5d7ed;" class="notice">
<font color="red"><b><u>Important!</u></b></font> We do not ask you to share personal information other than your user ID and PASSWORD when you log into software. Please do not disclose your User ID/Password in any written or oral communication with anyone.
</div>
<div id="footer">
Copyright <20> 2006 Matrix Credit Risk Controls Pvt. Ltd. All rights reserved.
</div>
<script language="javascript" type="text/javascript">
var QueryStr="val0="+1+"&val1="+5;
centerDivBoth('banner','H');
centerDivBoth('loginframe','B');
centerDivBoth('important','H');
CallMessage('${login.getErrMsg()}',3000,200,300);
RunAjax("POST","fetchdob",QueryStr,15);
function AfterResponse(AjaxResponse,OprID)
{
if(OprID==15)
{
var htmlresult="";
if(AjaxResponse.search('Error')>=0)
{
CallMessage(AjaxResponse,3000,200,300);
}
else
{
var rows=AjaxResponse.split("!R0W!");
for(indx=0;indx<rows.length-1;indx++)
{
var cols=rows[indx].split("!C0L!");
htmlresult+="<div align='center' style='height:50px;width:30%;'><font color='red'><b><u>"+cols[0]+"!</u></b></font></div><img hight='150px' width=150px src='/matrix/images/dob/"+cols[1]+".jpg'/>";
}
$("#banner").html(htmlresult);
}
}
}
</script>
</body>
</html>