Maven and JDK 21 Migration
This commit is contained in:
148
build/WebContent/WEB-INF/app/admin/user/userdetail.jsp
Normal file
148
build/WebContent/WEB-INF/app/admin/user/userdetail.jsp
Normal file
@@ -0,0 +1,148 @@
|
||||
<%@ page language="java" contentType="text/html; charset=ISO-8859-1"
|
||||
pageEncoding="ISO-8859-1"%>
|
||||
<%@page language="java" session="true" %>
|
||||
<%@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 HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<html>
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
|
||||
<title>Nimble 1.0 | User Detail </title>
|
||||
<script language="javascript" src="/matrix/js/lib/constants.js" type="text/javascript"></script>
|
||||
<script language="javascript" src="/matrix/js/jquery1.7.2.js" type="text/javascript"></script>
|
||||
<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/ui/select.js" type="text/javascript"></script>
|
||||
<script language="javascript" src="/matrix/js/appjs/belt.js" type="text/javascript"></script>
|
||||
<script language="javascript" src="/matrix/js/validator.js" type="text/javascript"></script>
|
||||
|
||||
<link href="/matrix/css/button.css" rel="stylesheet" type="text/css" />
|
||||
<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/select.css" rel="stylesheet" type="text/css" />
|
||||
</head>
|
||||
|
||||
<body style="font-family:Tahoma;background-color:#fff;font-size:10pt">
|
||||
<div id='PageFrame'>
|
||||
<div id="formcontainer" style="width:393px;margin-top:10px;position:absolute;z-index:-1">
|
||||
<form:form method="post" name="userdetail" id="userdetail" modelAttribute="userdetail" >
|
||||
<!-- Verifier Details (Section1) -->
|
||||
<div>
|
||||
<!-- Title -->
|
||||
<div id='title' class="title">
|
||||
<img id="icon" src="/matrix/images/ear_details.png" align="absmiddle" />
|
||||
<span id="title" align="absmiddle">User Detail</span>
|
||||
</div>
|
||||
<!-- -->
|
||||
<!-- Form (Section1) -->
|
||||
<div id="FormPanel1" class="FormPanel">
|
||||
<table align="center" id="FormControls" width="99%">
|
||||
<tr>
|
||||
<td>
|
||||
<form:hidden path="uid"/>
|
||||
<div class="widget">
|
||||
<div class="lblcontainer" style="width:85px">
|
||||
<font color="red">*</font>Login ID
|
||||
</div>
|
||||
<div class="inputcontainer">
|
||||
<form:input path="loginid" maxlength="20" style="width:250px" onblur="validate(this,'t','AlphaOnly')" />
|
||||
</div>
|
||||
</div>
|
||||
<div class="widget">
|
||||
<div class="lblcontainer" style="width:85px">
|
||||
<font color="red">*</font>Name
|
||||
</div>
|
||||
<div class="inputcontainer">
|
||||
<form:input path="displayname" maxlength="30" style="width:250px" onblur="validate(this,'t','PersonName')" />
|
||||
</div>
|
||||
</div>
|
||||
<div class="widget">
|
||||
<div class="lblcontainer" style="width:85px">
|
||||
<font color="red">*</font>Group
|
||||
</div>
|
||||
<div class="inputcontainer">
|
||||
<div class="divselect" id="divgroup" style="width:265px;">
|
||||
<form:select path="group" multiple="false" style="width:283px" onblur="validate(this,'t','')" >
|
||||
<option value="-1" selected>---</option>
|
||||
<c:forEach items="${grouplist}" var="group">
|
||||
<form:option value="${group[0]}" label="${group[1]}" />
|
||||
</c:forEach>
|
||||
</form:select>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="widget">
|
||||
<div class="lblcontainer" style="width:85px">
|
||||
<font color="red">*</font>Email ID
|
||||
</div>
|
||||
<div class="inputcontainer">
|
||||
<div class="divselect" id="divemailid" style="width:265px;">
|
||||
<form:select path="emailid" multiple="false" style="width:283px" onblur="validate(this,'t','')" >
|
||||
<option value="-1" selected>---</option>
|
||||
<c:forEach items="${emailist}" var="mailid">
|
||||
<form:option value="${mailid[0]}" label="${mailid[1]}" />
|
||||
</c:forEach>
|
||||
</form:select>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="widget">
|
||||
<div class="inputcontainer">
|
||||
<input type="checkbox" name="selall" id="selall" onclick="resetPassword(this)" />
|
||||
</div>
|
||||
<div class="lblcontainer" style="width:300px">
|
||||
<form:hidden path="resetpass" />
|
||||
<font color="red">*</font>Reset Password to root
|
||||
</div>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
<!-- -->
|
||||
</div>
|
||||
<!-- -->
|
||||
<form:hidden path="suuid" />
|
||||
|
||||
<!-- -->
|
||||
<input type="hidden" id="invalidfields" value="0" />
|
||||
<input type="button" class="button" name="btnsave" style="margin-top:5px;float:right" value="Save" id="btnsave" accesskey="S" onclick="ValidateSubmitUser();" />
|
||||
</form:form>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
<!-- Page Load Javascript -->
|
||||
<script language="javascript" type="text/javascript">
|
||||
centerDivBoth("formcontainer","H");
|
||||
document.getElementById("loginid").focus();
|
||||
|
||||
function ValidateSubmitUser()
|
||||
{
|
||||
validate(document.getElementById("loginid"),'t','AlphaOnly');
|
||||
validate(document.getElementById("displayname"),'t','PersonName');
|
||||
validate(document.getElementById("group"),'t','');
|
||||
if(checkForm())
|
||||
{
|
||||
SubmitForm('updateuser','_parent','userdetail');
|
||||
}
|
||||
}
|
||||
function resetPassword(elm){
|
||||
|
||||
if(elm.checked)
|
||||
$('#resetpass').val("1");
|
||||
else
|
||||
$('#resetpass').val("0");
|
||||
}
|
||||
</script>
|
||||
|
||||
<!-- -->
|
||||
<!-- Process Message -->
|
||||
<c:if test="${not empty msg}">
|
||||
<script language="javascript" type="text/javascript"> CallMessage('${msg}',3000,200,300); </script>
|
||||
<c:if test="${stat==true}">
|
||||
<script language="javascript" type="text/javascript">window.returnValue='${retval}'; window.close(); </script>
|
||||
</c:if>
|
||||
</c:if>
|
||||
<!-- -->
|
||||
</html>
|
||||
Reference in New Issue
Block a user