@@ -35,33 +35,33 @@ function deleteUser() {
3535
3636 <div class =" form-group" >
3737 <label for =" userKey" ><%= jspUtil. label(" knowledge.signup.label.mail" ) % > </label >
38- <input type =" text" class =" form-control" name =" userKey" id =" userKey" placeholder =" Mail Address" value =" ${ userKey } " />
38+ <input type =" text" class =" form-control" name =" userKey" id =" userKey" placeholder =" Mail Address" value =" <%= jspUtil . out( " userKey" ) % > " />
3939 </div >
4040 <div class =" form-group" >
4141 <label for =" userName" ><%= jspUtil. label(" knowledge.signup.label.name" ) % > </label >
42- <input type =" text" class =" form-control" name =" userName" id =" userName" placeholder =" User Name" value =" ${ userName } " />
42+ <input type =" text" class =" form-control" name =" userName" id =" userName" placeholder =" User Name" value =" <%= jspUtil . out( " userName" ) % > " />
4343 </div >
4444
4545 <div class =" form-group" >
4646 <label for =" password" ><%= jspUtil. label(" knowledge.signup.label.password" ) % ><%= jspUtil. label(" knowledge.account.label.password.msg" ) % > </label >
47- <input type =" password" class =" form-control" name =" password" id =" password" placeholder =" Password" value =" ${ password } " />
47+ <input type =" password" class =" form-control" name =" password" id =" password" placeholder =" Password" value =" <%= jspUtil . out( " password" ) % > " />
4848 </div >
4949 <div class =" form-group" >
5050 <label for =" confirm_password" ><%= jspUtil. label(" knowledge.signup.label.confirm.password" ) % > </label >
51- <input type =" password" class =" form-control" name =" confirm_password" id =" confirm_password" placeholder =" Confirm Password" value =" ${ confirm_password } " />
51+ <input type =" password" class =" form-control" name =" confirm_password" id =" confirm_password" placeholder =" Confirm Password" value =" <%= jspUtil . out( " confirm_password" ) % > " />
5252 </div >
5353
5454 <div class =" form-group" >
5555 <label for =" role_${ role. roleId } " ><%= jspUtil. label(" label.role" ) % > </label ><br />
5656 <c:forEach var =" role" items =" ${ systemRoles } " varStatus =" status" >
5757 <label class =" radio-inline" >
58- <input type =" checkbox" value =" ${ role. roleKey } " name =" roles"
58+ <input type =" checkbox" value =" <%= jspUtil . out( " role.roleKey" ) % > " name =" roles"
5959 id =" role_${ role. roleId } " <%
6060 if (jspUtil.getValue( " role" , Roles.class).isChecked()) {
6161 out.write( " checked=\" checked\ " " );
6262 }
6363 % >/>
64- ${ role. roleName }
64+ <%= jspUtil . out( " role.roleName" ) % >
6565 </label >
6666 </c:forEach >
6767 </div >
@@ -74,12 +74,12 @@ function deleteUser() {
7474 </p >
7575 </div >
7676
77- <input type =" hidden" name =" offset" value =" ${ offset } " />
78- <input type =" hidden" name =" userId" value =" ${ userId } " />
77+ <input type =" hidden" name =" offset" value =" <%= jspUtil . out( " offset" ) % > " />
78+ <input type =" hidden" name =" userId" value =" <%= jspUtil . out( " userId" ) % > " />
7979
8080 <button type =" submit" class =" btn btn-primary" ><i class =" fa fa-save" ></i >  ; <%= jspUtil. label(" label.update" ) % > </button >
8181 <button type =" button" class =" btn btn-danger" onclick =" deleteUser();" ><i class =" fa fa-remove" ></i >  ; <%= jspUtil. label(" label.delete" ) % > </button >
82- <a href =" <%= request. getContextPath() % > /admin.users/list/${ offset } "
82+ <a href =" <%= request. getContextPath() % > /admin.users/list/<%= jspUtil . out( " offset" ) % > "
8383 class =" btn btn-success" role =" button" ><i class =" fa fa-list-ul" ></i >  ; <%= jspUtil. label(" label.backlist" ) % > </a >
8484
8585</form >
0 commit comments