21 lines
535 B
HTML
21 lines
535 B
HTML
<!DOCTYPE html>
|
|
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<meta name="viewport" content="width=device-width" />
|
|
<title>发生错误</title>
|
|
<link rel="stylesheet" href="~/statics/bundles/bundle.min.css?v=1.11">
|
|
</head>
|
|
<body>
|
|
<div class="row m-5">
|
|
<div class="col-md-6 offset-md-3">
|
|
<div class="alert alert-danger">
|
|
<h4 class="alert-heading">发生错误!</h4>
|
|
<hr>
|
|
<p>{{ErrorMsg}}</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html> |