mobile.jsp 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. <%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%>
  2. <%@ taglib prefix="spring" uri="http://www.springframework.org/tags" %>
  3. <%@ taglib prefix="fmt" uri="http://java.sun.com/jsp/jstl/fmt"%>
  4. <%@ taglib prefix="s" uri="http://sso.maxkey.org/tags" %>
  5. <table width="100%">
  6. <tr>
  7. <td>
  8. <form id="actionForm" method="post" type="label" autoclose="true" action="<s:Base/>/safe/mobile">
  9. <table class="datatable" >
  10. <tbody>
  11. <tr>
  12. <th colspan="2"><s:Locale code="access.security.mobile.setting" /></th>
  13. </tr>
  14. <tr>
  15. <th><s:Locale code="userinfo.displayName" /> :</th>
  16. <td>
  17. <input readonly type="text" id="displayName" name="displayName" class="required" title="" value="${model.displayName}"/>
  18. </td>
  19. </tr>
  20. <tr>
  21. <th><s:Locale code="userinfo.username" /> :</th>
  22. <td>
  23. <input readonly type="text" id="username" name="username" class="required" title="" value="${model.username}"/>
  24. </td>
  25. </tr>
  26. <tr>
  27. <th><s:Locale code="userinfo.mobile" /> :</th>
  28. <td>
  29. <input type="text" id="mobile" name="mobile" class=" required" title="" value="${model.mobile}"/>
  30. <label for="mobile"></label>
  31. </td>
  32. </tr>
  33. <tr style="display:none;">
  34. <th>Verify Code :</th>
  35. <td>
  36. <input type="text" id="verify" name="verify" class="required" title="" value="1" style="width:200px" /><input class="button" style="width:100px" type="button" id="getVerifyBtn" value="get Verify"/>
  37. <label for="verify"></label>
  38. </td>
  39. </tr>
  40. <tr>
  41. <td colspan="2" class="center">
  42. <input id="_method" type="hidden" name="_method" value="post"/>
  43. <input class="button" style="width:100px" type="button" id="submitBtn" value="<s:Locale code="button.text.save" />"/>
  44. </td>
  45. </tr>
  46. </tbody>
  47. </table>
  48. </form>
  49. </td>
  50. </tr>
  51. </table>