grgw_old_java/heatsupply2/WebContent/webpage/modules/sys/userInfoEdit.jsp

42 lines
1.8 KiB
Plaintext

<%@ page contentType="text/html;charset=UTF-8" %>
<%@ include file="/webpage/include/taglib.jsp"%>
<html>
<head>
<title>个人信息</title>
<meta name="decorator" content="default"/>
</head>
<body>
<form:form id="inputForm" modelAttribute="user" action="${ctx}/sys/user/infoEdit" method="post" class="form-horizontal form-group">
<table class="table table-bordered table-condensed dataTables-example dataTable no-footer">
<tbody>
<tr>
<td class="width-15 active"><label class="pull-right"><span style="color:red;">*</span>姓名:</label></td>
<td class="width-35">
<form:input path="name" htmlEscape="false" maxlength="50" class="form-control max-width-250 required" />
</td>
<td class="width-15 active"><label class="pull-right">邮箱:</label></td>
<td class="width-35">
<form:input path="email" htmlEscape="false" maxlength="50" class="form-control max-width-250 email"/>
</td>
</tr>
<tr>
<td class="width-15 active"><label class="pull-right">电话:</label></td>
<td class="width-35">
<form:input path="phone" htmlEscape="false" class="form-control max-width-250 " maxlength="50"/>
</td>
<td class="width-15 active"><label class="pull-right"><span style="color:red;">*</span>手机:</label></td>
<td class="width-35">
<form:input path="mobile" class="form-control max-width-250 required" htmlEscape="false" maxlength="50"/>
</td>
</tr>
<tr>
<td class="width-15 active"><label class="pull-right">备注:</label></td>
<td class="width-35" colspan="3" style="height: 100px;">
<form:textarea path="remarks" htmlEscape="false" maxlength="60" class="form-control" style="height: 90px;" />
</td>
</tr>
</tbody>
</table>
</form:form>
</body>
</html>