添加一个登录界面
This commit is contained in:
152
软件系统浏览器模版/Content/Login.css
Normal file
152
软件系统浏览器模版/Content/Login.css
Normal file
@@ -0,0 +1,152 @@
|
||||
|
||||
body {
|
||||
}
|
||||
|
||||
.form-bg {
|
||||
background: #00b4ef;
|
||||
}
|
||||
|
||||
.form-horizontal {
|
||||
background: #fff;
|
||||
padding-bottom: 40px;
|
||||
border-radius: 15px;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.form-horizontal .heading {
|
||||
display: block;
|
||||
font-size: 35px;
|
||||
font-weight: 700;
|
||||
padding: 35px 0;
|
||||
border-bottom: 1px solid #f0f0f0;
|
||||
margin-bottom: 30px;
|
||||
font-family: "Microsoft YaHei","Segoe UI", "Lucida Grande", Helvetica, Arial,sans-serif;
|
||||
color: #383838;
|
||||
}
|
||||
|
||||
.form-horizontal .form-group {
|
||||
padding: 0 40px;
|
||||
margin: 0 0 25px 0;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.form-horizontal .form-control {
|
||||
background: #f0f0f0;
|
||||
border: none;
|
||||
border-radius: 20px;
|
||||
box-shadow: none;
|
||||
padding: 0 20px 0 45px;
|
||||
height: 40px;
|
||||
transition: all 0.3s ease 0s;
|
||||
}
|
||||
|
||||
.form-horizontal .form-control:focus {
|
||||
background: #e0e0e0;
|
||||
box-shadow: none;
|
||||
outline: 0 none;
|
||||
}
|
||||
|
||||
.form-horizontal .form-group i {
|
||||
position: absolute;
|
||||
top: 12px;
|
||||
left: 60px;
|
||||
font-size: 17px;
|
||||
color: #c8c8c8;
|
||||
transition: all 0.5s ease 0s;
|
||||
}
|
||||
|
||||
.form-horizontal .form-control:focus + i {
|
||||
color: #00b4ef;
|
||||
}
|
||||
|
||||
.form-horizontal .fa-question-circle {
|
||||
display: inline-block;
|
||||
position: absolute;
|
||||
top: 12px;
|
||||
right: 60px;
|
||||
font-size: 20px;
|
||||
color: #808080;
|
||||
transition: all 0.5s ease 0s;
|
||||
}
|
||||
|
||||
.form-horizontal .fa-question-circle:hover {
|
||||
color: #000;
|
||||
}
|
||||
|
||||
.form-horizontal .main-checkbox {
|
||||
float: left;
|
||||
width: 20px;
|
||||
height: 20px;
|
||||
background: #11a3fc;
|
||||
border-radius: 50%;
|
||||
position: relative;
|
||||
margin: 5px 0 0 5px;
|
||||
border: 1px solid #11a3fc;
|
||||
}
|
||||
|
||||
.form-horizontal .main-checkbox label {
|
||||
width: 20px;
|
||||
height: 20px;
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.form-horizontal .main-checkbox label:after {
|
||||
content: "";
|
||||
width: 10px;
|
||||
height: 5px;
|
||||
position: absolute;
|
||||
top: 5px;
|
||||
left: 4px;
|
||||
border: 3px solid #fff;
|
||||
border-top: none;
|
||||
border-right: none;
|
||||
background: transparent;
|
||||
opacity: 0;
|
||||
-webkit-transform: rotate(-45deg);
|
||||
transform: rotate(-45deg);
|
||||
}
|
||||
|
||||
.form-horizontal .main-checkbox input[type=checkbox] {
|
||||
visibility: hidden;
|
||||
}
|
||||
|
||||
.form-horizontal .main-checkbox input[type=checkbox]:checked + label:after {
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
.form-horizontal .text {
|
||||
float: left;
|
||||
margin-left: 7px;
|
||||
line-height: 20px;
|
||||
padding-top: 5px;
|
||||
text-transform: capitalize;
|
||||
}
|
||||
|
||||
.form-horizontal .btn {
|
||||
float: right;
|
||||
font-size: 14px;
|
||||
color: #fff;
|
||||
background: #00b4ef;
|
||||
border-radius: 30px;
|
||||
padding: 10px 25px;
|
||||
border: none;
|
||||
text-transform: capitalize;
|
||||
transition: all 0.5s ease 0s;
|
||||
}
|
||||
|
||||
@media only screen and (max-width: 479px) {
|
||||
.form-horizontal .form-group {
|
||||
padding: 0 25px;
|
||||
}
|
||||
|
||||
.form-horizontal .form-group i {
|
||||
left: 45px;
|
||||
}
|
||||
|
||||
.form-horizontal .btn {
|
||||
padding: 10px 20px;
|
||||
}
|
||||
}
|
||||
@@ -26,5 +26,10 @@ namespace 软件系统浏览器模版.Controllers
|
||||
|
||||
return View();
|
||||
}
|
||||
|
||||
public ActionResult Login()
|
||||
{
|
||||
return View();
|
||||
}
|
||||
}
|
||||
}
|
||||
55
软件系统浏览器模版/Views/Home/Login.cshtml
Normal file
55
软件系统浏览器模版/Views/Home/Login.cshtml
Normal file
@@ -0,0 +1,55 @@
|
||||
@using system
|
||||
@{
|
||||
Layout = null;
|
||||
}
|
||||
|
||||
<!DOCTYPE html>
|
||||
|
||||
<html>
|
||||
<head>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>用户登录界面</title>
|
||||
<link href="~/Content/bootstrap.css" rel="stylesheet" />
|
||||
<link href="~/Content/Login.css" rel="stylesheet" />
|
||||
</head>
|
||||
|
||||
|
||||
<body id="body" style="background-color:darkgray">
|
||||
<div class="container" style="filter:alpha(opacity=8);opacity: 0.8; " id="main">
|
||||
<div class="row">
|
||||
<div class="col-md-offset-3 col-md-6">
|
||||
@using (Html.BeginForm("Login", "Account", FormMethod.Post, new { @class = "form-horizontal" }))
|
||||
{
|
||||
@Html.AntiForgeryToken()
|
||||
<span class="heading">XX管理系统<small style="font-family:'Microsoft YaHei';color:#a1a1a1;font-size:15px">用户登录</small></span>
|
||||
<div class="form-group">
|
||||
<input type="text" class="form-control" name="UserName" placeholder="用户名" required>
|
||||
<i class="fa fa-user"></i>
|
||||
</div>
|
||||
<div class="form-group help">
|
||||
<input type="password" class="form-control" name="UserPassword" placeholder="密 码" required>
|
||||
<i class="fa fa-lock"></i>
|
||||
<a href="#" class="fa fa-question-circle"></a>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<button type="submit" class="btn btn-default">登录</button>
|
||||
</div>
|
||||
}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
@if (ViewData["消息"] != null)
|
||||
{
|
||||
<script type="text/javascript">alert('@ViewData["消息"]')</script>
|
||||
}
|
||||
|
||||
<script type="text/javascript">
|
||||
var windowScreen = document.documentElement;
|
||||
var main_div = document.getElementById("main");
|
||||
if (((windowScreen.clientHeight - main_div.clientHeight) / 2) >= 0) {
|
||||
var main_top = (windowScreen.clientHeight - main_div.clientHeight) / 2 + "px";
|
||||
main_div.style.marginTop = main_top;
|
||||
}
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
||||
@@ -163,6 +163,7 @@
|
||||
<Content Include="Content\bootstrap-theme.min.css" />
|
||||
<Content Include="Content\bootstrap.css" />
|
||||
<Content Include="Content\bootstrap.min.css" />
|
||||
<Content Include="Content\Login.css" />
|
||||
<Content Include="favicon.ico" />
|
||||
<Content Include="fonts\glyphicons-halflings-regular.svg" />
|
||||
<Content Include="Global.asax" />
|
||||
@@ -208,9 +209,11 @@
|
||||
<Content Include="Views\Home\Contact.cshtml" />
|
||||
<Content Include="Views\Home\Index.cshtml" />
|
||||
<Content Include="Views\Shared\_LoginPartial.cshtml" />
|
||||
<Content Include="Views\Home\Login.cshtml" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<Folder Include="App_Data\" />
|
||||
<Folder Include="Images\Shared\" />
|
||||
<Folder Include="Models\" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
|
||||
Reference in New Issue
Block a user