userinfo.jsp 975 B

123456789101112131415161718192021
  1. <%@ page language="java" import="java.util.*" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
  2. <%@include file="/context/mytags.jsp"%>
  3. <!DOCTYPE html>
  4. <html>
  5. <head>
  6. <t:base type="jquery,tools"></t:base>
  7. </head>
  8. <body style="overflow-y: hidden" scroll="no">
  9. <t:formvalid formid="formobj" layout="div" dialog="true">
  10. <fieldset class="step">
  11. <div class="form"><label class="form"> <t:mutiLang langKey="common.username"/>: </label> ${user.userName }</div>
  12. <div class="form"><label class="form"> <t:mutiLang langKey="common.surname"/>: </label> ${user.realName}</div>
  13. <div class="form"><label class="form"> <t:mutiLang langKey="common.phone"/>: </label> ${user.mobilePhone}</div>
  14. <div class="form"><label class="form"> <t:mutiLang langKey="common.office.tel"/>: </label> ${user.officePhone}</div>
  15. <div class="form"><label class="form"> <t:mutiLang langKey="common.mail"/>: </label> ${user.email}</div>
  16. </fieldset>
  17. </form>
  18. </t:formvalid>
  19. </body>
  20. </html>