BootstrapAdmin/Bootstrap.Admin/Views/Home/Lock.cshtml

35 lines
1.4 KiB
Plaintext
Raw Normal View History

2016-11-06 12:28:53 +08:00
@model LockModel
@{
2016-11-06 02:11:03 +08:00
ViewBag.Title = "系统登陆";
Layout = "~/Views/Shared/_Layout.cshtml";
}
@section css {
<link href="~/Content/css/lock.css" rel="stylesheet" />
}
@section javascript {
2016-11-06 12:28:53 +08:00
<script src="~/content/js/jquery.validate.js"></script>
<script src="~/content/js/messages_zh.js"></script>
2016-11-06 02:11:03 +08:00
<script src="~/Scripts/lock.js"></script>
}
<div class="lock-wrapper">
<div id="time"></div>
<div class="lock-box text-center">
<img src="../../content/images/logo2.jpg" alt="lock avatar" />
2016-11-06 12:28:53 +08:00
<h1>@Model.DisplayName</h1>
2016-11-06 02:11:03 +08:00
<span class="locked">系统已锁定</span>
<form role="form" class="form-inline" method="post" autocomplete="off">
2016-11-06 12:28:53 +08:00
<input type="text" name="username" class="hide" value="@Model.UserName" />
2016-11-06 02:11:03 +08:00
<div class="form-group col-lg-12">
<div class="input-group">
<span class="glyphicon glyphicon-lock input-group-addon"></span>
<input type="password" name="password" class="form-control" value="" autocomplete="off" placeholder="密码" />
2016-11-06 02:11:03 +08:00
<span class="input-group-btn">
<button class="btn btn-lock" type="submit">
<i class="glyphicon glyphicon-arrow-right"></i>
</button>
</span>
</div>
</div>
</form>
</div>
</div>