| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667 |
- <%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%>
- <%@ taglib prefix="spring" uri="http://www.springframework.org/tags" %>
- <%@ taglib prefix="fmt" uri="http://java.sun.com/jsp/jstl/fmt"%>
- <%@ taglib prefix="s" uri="http://sso.maxkey.org/tags" %>
- <table width="100%">
- <tr>
- <td>
- <form id="actionForm" method="post" type="label" autoclose="true" action="<s:Base/>/safe/changePassword">
- <table class="datatable" >
- <tbody>
- <tr>
- <th colspan="2"><s:Locale code="access.security.loginpassword.setting" /></th>
- </tr>
- <tr>
- <th><s:Locale code="userinfo.displayName" /> :</th>
- <td>
- <input readonly type="text" id="displayName" name="displayName" class="required" title="" value="${model.displayName}"/>
-
- </td>
- </tr>
- <tr>
- <th><s:Locale code="userinfo.username" /> :</th>
- <td>
- <input readonly type="text" id="username" name="username" class="required" title="" value="${model.username}"/>
-
- </td>
- </tr>
- <tr>
- <th><s:Locale code="access.security.oldPassword" /> :</th>
- <td>
- <input type="password" id="oldPassword" name="oldPassword" class="required" title="" value=""/>
- <b class="orange">*</b>
- <label for="oldPassword"></label>
- </td>
- </tr>
- <tr>
- <th><s:Locale code="access.security.newPassword" />:</th>
- <td>
- <input type="password" id="newPassword" name="newPassword" class=" required" title="" value=""/>
- <b class="orange">*</b>
- <label for="newPassword"></label>
- </td>
- </tr>
- <tr>
- <th><s:Locale code="access.security.confirmPassword" />:</th>
- <td nowrap>
- <input type="password" id="confirmPassword" name="confirmPassword" class="{ required: true, equalTo: '#newPassword' }" title="" value=""/>
- <b class="orange">*</b>
- <label for="confirmPassword"></label>
- </td>
- </tr>
- <tr>
- <td colspan="2" class="center">
- <input id="_method" type="hidden" name="_method" value="post"/>
- <input class="button" style="width:100px" type="button" id="submitBtn" value="<s:Locale code="button.text.save" />"/>
-
- </td>
- </tr>
- </tbody>
- </table>
- </form>
- </td>
- </tr>
- </table>
|