Examination_system/Examination_system-1/.svn/pristine/01/0190ff8522ad41e9c90fef4c43e...

97 lines
4.0 KiB
Plaintext
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<%@ page contentType="text/html;charset=UTF-8" %>
<div id="auDiv" class="hide">
<form id="auForm" method="POST" onsubmit="return false;" >
<table cellspacing="0" cellpadding="0" border="0" class="customTable">
<tbody>
<tr style="display:none">
<td colspan="2" class="ui-state-error"><input type="hidden" name="id" ></td>
</tr>
<tr class="FormData" >
<td class="CaptionTD">性别:</td>
<td class="DataTD">&nbsp;
<label class="radio-inline">
<input type="radio" name="sex" id="sex1" value="1"> 男
</label>
<label class="radio-inline">
<input type="radio" name="sex" id="sex0" value="0"> 女
</label>
</td>
</tr>
<tr class="FormData">
<td class="CaptionTD"><font color="red">*</font>登录名:</td>
<td class="DataTD">&nbsp;
<input type="text" jyValidate="required" name="loginName" class="FormElement ui-widget-content ui-corner-all"></td>
</tr>
<!-- <tr class="FormData">
<td class="CaptionTD">单位部门:</td>
<td class="DataTD">&nbsp;
<input id="orgName" type="text" jyValidate="required" readonly value="" class="FormElement ui-widget-content ui-corner-all" onclick="showRole(); return false;"/>
<input type="hidden" name="orgId" value="0" >
<a href="#" title="清空" onclick="emptyRole(); return false;" class="lrspace3 aBtnNoTD" data-toggle="modal"><i class='icon-remove bigger-120 red'></i></a>
<div id='orgContent' class="menuContent ztreeMC" style="display: none; position: absolute;">
<ul id="orgTree" class="ztree accountOrgTree"></ul>
</div>
</td>
</tr> -->
<tr class="FormData">
<td class="CaptionTD">用户名:</td>
<td class="DataTD">&nbsp;
<input type="text" name="name" class="FormElement ui-widget-content ui-corner-all"></td>
</tr>
<tr class="FormData">
<td class="CaptionTD">电子邮箱:</td>
<td class="DataTD">&nbsp;
<input type="text" jyValidate="email" name="mail" class="FormElement ui-widget-content ui-corner-all"></td>
</tr>
<tr class="FormData">
<td class="CaptionTD">电话号码:</td>
<td class="DataTD">&nbsp;
<input type="text" name="telphone" class="FormElement ui-widget-content ui-corner-all">
</td>
</tr>
<tr class="FormData" >
<td class="CaptionTD"><font color="red">*</font>账号类型:</td>
<td class="DataTD">&nbsp;
<select name="type.id" id="type" class="FormElement ui-widget-content ui-corner-all">
<option value="">请选择账号类型</option>
<c:forEach items="${types}" var="type">
<option value="${type.id}" >${type.name}</option>
</c:forEach>
</select>
</tr>
<tr class="FormData">
<td class="CaptionTD">QQ</td>
<td class="DataTD">&nbsp;
<input type="text" name="qq" class="FormElement ui-widget-content ui-corner-all">
</td>
</tr>
<tr class="FormData">
<td class="CaptionTD">办公地址:</td>
<td class="DataTD">&nbsp;
<input type="text" name="officeAddress" class="FormElement ui-widget-content ui-corner-all">
</td>
</tr>
</tbody>
</table>
</form>
</div>
<div id="resetPwdDiv" class="hide">
<form id="resetPwdFrom" method="POST" onsubmit="return false;" >
<table cellspacing="0" cellpadding="0" border="0" class="customTable">
<tbody>
<tr style="display:none">
<td colspan="2" class="ui-state-error"><input type="hidden" name="id" ></td>
</tr>
<tr class="FormData">
<td class="CaptionTD">重置密码:</td>
<td class="DataTD">&nbsp;
<input type="password" jyValidate="required" name="pwd" class="FormElement ui-widget-content ui-corner-all">
</td>
</tr>
</tbody>
</table>
</form>
</div>