diff --git a/04.系统编码/.vs/BeijingSafeguard/v15/.suo b/04.系统编码/.vs/BeijingSafeguard/v15/.suo index 3bc11c7..957cc2c 100644 Binary files a/04.系统编码/.vs/BeijingSafeguard/v15/.suo and b/04.系统编码/.vs/BeijingSafeguard/v15/.suo differ diff --git a/04.系统编码/.vs/BeijingSafeguard/v15/Server/sqlite3/storage.ide-shm b/04.系统编码/.vs/BeijingSafeguard/v15/Server/sqlite3/storage.ide-shm index 590b2c0..1684185 100644 Binary files a/04.系统编码/.vs/BeijingSafeguard/v15/Server/sqlite3/storage.ide-shm and b/04.系统编码/.vs/BeijingSafeguard/v15/Server/sqlite3/storage.ide-shm differ diff --git a/04.系统编码/.vs/BeijingSafeguard/v15/Server/sqlite3/storage.ide-wal b/04.系统编码/.vs/BeijingSafeguard/v15/Server/sqlite3/storage.ide-wal index 0b21d35..3e5e0e9 100644 Binary files a/04.系统编码/.vs/BeijingSafeguard/v15/Server/sqlite3/storage.ide-wal and b/04.系统编码/.vs/BeijingSafeguard/v15/Server/sqlite3/storage.ide-wal differ diff --git a/04.系统编码/App/Content/scripts/register/register.js b/04.系统编码/App/Content/scripts/register/register.js index fb1863c..7c46908 100644 --- a/04.系统编码/App/Content/scripts/register/register.js +++ b/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) }); diff --git a/04.系统编码/App/Content/styles/register.css b/04.系统编码/App/Content/styles/register.css index ed29f48..7993375 100644 --- a/04.系统编码/App/Content/styles/register.css +++ b/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; diff --git a/04.系统编码/App/Views/Register/Index.cshtml b/04.系统编码/App/Views/Register/Index.cshtml index 965d817..4d38d98 100644 --- a/04.系统编码/App/Views/Register/Index.cshtml +++ b/04.系统编码/App/Views/Register/Index.cshtml @@ -1,5 +1,5 @@ @{ - ViewBag.Title = "Index"; + ViewBag.Title = "用户注册"; }
@@ -19,13 +19,13 @@
-
+
- +
diff --git a/04.系统编码/App/Views/User/Login.cshtml b/04.系统编码/App/Views/User/Login.cshtml index ea6d876..7605a38 100644 --- a/04.系统编码/App/Views/User/Login.cshtml +++ b/04.系统编码/App/Views/User/Login.cshtml @@ -1,5 +1,5 @@ @{ - ViewBag.Title = "Index"; + ViewBag.Title = "用户登录"; }