You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

38 lines
1.8 KiB

@{
ViewBag.Title = "用户注册";
}
<link href="~/Content/styles/register.css" rel="stylesheet" />
<div class="register-bg">
<div class="register clearfix">
<div class="register-content fr">
<img src="~/Content/images/login-logo.png" class="register-logo" />
<h2 class="label">用户注册</h2>
<div class="register-block register-username">
<span class="icon"><img src="~/Content/images/login-username.png" /></span>
<input type="text" id="username" placeholder="请输入用户名" />
<div class="sex-select">
<span class="active" gender="1">男</span>
<span gender="0">女</span>
</div>
</div>
<div class="register-block org-select">
<span class="icon"><img src="~/Content/images/org.png" /></span>
<input id="org-list" class="easyui-combobox" prompt="请选择机构" data-options="editable: false">
</div>
<div class="register-block">
<span class="icon"><img src="~/Content/images/login-username.png" /></span>
<input type="text" id="login-account" placeholder="请输入登录账户" />
</div>
<div class="register-block register-password">
<span class="icon"><img src="~/Content/images/login-password.png" /></span>
<input type="password" id="password" placeholder="请输入至少6位长度密码" />
<div class="password-toggle"></div>
</div>
<button class="register-btn" id="register-button">注册</button>
</div>
</div>
</div>
<script src="~/Content/thirds/jquery-3.2.1.min.js"></script>
<script src="~/Content/scripts/register/register.js"></script>