53 lines
2.3 KiB
Plaintext
53 lines
2.3 KiB
Plaintext
|
|
@model RB_MES_API.Models.CloudLogin
|
||
|
|
@{
|
||
|
|
ViewData["Title"] = "系统登录";
|
||
|
|
Layout = "";
|
||
|
|
}
|
||
|
|
<!DOCTYPE html>
|
||
|
|
<html>
|
||
|
|
<head>
|
||
|
|
<meta charset="utf-8">
|
||
|
|
<link rel="stylesheet" href="https://cdn.staticfile.org/twitter-bootstrap/3.3.7/css/bootstrap.min.css">
|
||
|
|
<script src="https://cdn.staticfile.org/jquery/2.1.1/jquery.min.js"></script>
|
||
|
|
<script src="https://cdn.staticfile.org/twitter-bootstrap/3.3.7/js/bootstrap.min.js"></script>
|
||
|
|
</head>
|
||
|
|
<body>
|
||
|
|
<div class="container">
|
||
|
|
<div class="row">
|
||
|
|
<div class="col-xs-6 col-sm-3">
|
||
|
|
<form asp-action="Index" class="form-horizontal" role="form">
|
||
|
|
<div asp-validation-summary="ModelOnly" class="text-danger"></div>
|
||
|
|
<div class="panel panel-success">
|
||
|
|
<div class="panel-heading">
|
||
|
|
<h4 class="panel-title display-4">系统登录</h4>
|
||
|
|
</div>
|
||
|
|
<div class="panel-body">
|
||
|
|
<div class="form-group">
|
||
|
|
<label asp-for="TokenUserName" class="col-sm-3 control-label"></label>
|
||
|
|
<div class="col-sm-8">
|
||
|
|
<input asp-for="TokenUserName" class="form-control" />
|
||
|
|
<span asp-validation-for="TokenUserName" class="text-danger"></span>
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
<div class="form-group">
|
||
|
|
<label asp-for="TokenPWD" class="col-sm-3 control-label"></label>
|
||
|
|
<div class="col-sm-8">
|
||
|
|
<input asp-for="TokenPWD" class="form-control" />
|
||
|
|
<span asp-validation-for="TokenPWD" class="text-danger"></span>
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
<div class="form-group">
|
||
|
|
<div class="col-sm-4 pull-right">
|
||
|
|
<input type="submit" onclick="fff" value="确定" class="btn btn-primary" />
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
</form>
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
</body>
|
||
|
|
</html>
|
||
|
|
|