Browse Source

commit

master
hhx 3 years ago
parent
commit
48e833ac79
  1. BIN
      04.系统编码/.vs/BeijingSafeguard/v15/.suo
  2. BIN
      04.系统编码/.vs/BeijingSafeguard/v15/Server/sqlite3/storage.ide-shm
  3. BIN
      04.系统编码/.vs/BeijingSafeguard/v15/Server/sqlite3/storage.ide-wal
  4. 1
      04.系统编码/App/Content/scripts/register/register.js
  5. 8
      04.系统编码/App/Content/styles/register.css
  6. 6
      04.系统编码/App/Views/Register/Index.cshtml
  7. 2
      04.系统编码/App/Views/User/Login.cshtml

BIN
04.系统编码/.vs/BeijingSafeguard/v15/.suo

Binary file not shown.

BIN
04.系统编码/.vs/BeijingSafeguard/v15/Server/sqlite3/storage.ide-shm

Binary file not shown.

BIN
04.系统编码/.vs/BeijingSafeguard/v15/Server/sqlite3/storage.ide-wal

Binary file not shown.

1
04.系统编码/App/Content/scripts/register/register.js

@ -85,7 +85,6 @@
LoginPassword: $("#password").val().trim()
},
success: function () {
alert('注册成功,即将跳转到登录页。');
window.location.href = '/User/Login';
}.bind(this)
});

8
04.系统编码/App/Content/styles/register.css

@ -52,6 +52,7 @@
width: 341px;
height: 40px;
padding-left: 37px;
padding-right: 15px;
display: block;
line-height: 44px;
border: 1px solid #dddddd;
@ -63,7 +64,6 @@
}
.register-block .sex-select {
border-radius: 3px;
overflow: hidden;
display: flex;
position: absolute;
@ -84,10 +84,12 @@
.register-block .sex-select span:first-of-type {
border-left: 1px solid #d2d2d2;
border-radius: 3px 0 0 3px;
}
.register-block .sex-select span:last-of-type {
border-right: 1px solid #d2d2d2;
border-radius: 0 3px 3px 0;
}
.register-block .sex-select span.active {
@ -115,6 +117,10 @@
background: url("../images/password-open.png") no-repeat center/cover;
}
.register-username input {
width: 251px;
}
.register-btn {
width: 345px;
margin: 12px 0 0 38px;

6
04.系统编码/App/Views/Register/Index.cshtml

@ -1,5 +1,5 @@
@{
ViewBag.Title = "Index";
ViewBag.Title = "用户注册";
}
<link href="~/Content/styles/register.css" rel="stylesheet" />
<div class="register-bg">
@ -19,13 +19,13 @@
<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 register-username">
<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="请输入密码" />
<input type="password" id="password" placeholder="密码长度至少为6位" />
<div class="password-toggle"></div>
</div>

2
04.系统编码/App/Views/User/Login.cshtml

@ -1,5 +1,5 @@
@{
ViewBag.Title = "Index";
ViewBag.Title = "用户登录";
}
<link href="~/Content/styles/login.css" rel="stylesheet" />
<div class="login-bg">

Loading…
Cancel
Save