23 lines
739 B
HTML
23 lines
739 B
HTML
<!-- 写一个错误页面 -->
|
|
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
|
<title>404</title>
|
|
<link rel="stylesheet" href="/static/css/backend-plugin.min.css">
|
|
<link rel="stylesheet" href="/static/css/backend.css">
|
|
</head>
|
|
<body class=" ">
|
|
<div class="wrapper">
|
|
<div class="container">
|
|
<div class="row no-gutters height-self-center">
|
|
<div class="col-sm-12 text-center align-self-center">
|
|
<div class="iq-error position-relative">
|
|
这是404页面
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</body> |