forked from xiaowei1118/java_server
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathuploadError.html
More file actions
34 lines (32 loc) · 859 Bytes
/
uploadError.html
File metadata and controls
34 lines (32 loc) · 859 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>无标题文档</title>
<link rel="stylesheet" href="../css/bootstrap.min.css">
<link rel="stylesheet" href="../css/bootstrap-table.min.css">
<link rel="shortcut icon" href="img/icon.png">
</head>
<body>
<div class="container">
<div class="row-fluid">
<div class="page-header">
<h1>
文件上传失败页面
</h1>
</div>
<div>
<p>文件上传失败,上传失败可能有以下几种原因:</p>
<ul>
<li>文件为非图片格式</li>
<li>文件太大</li>
</ul>
<p>如还不能够解决请联系管理员!</p>
</div>
</div>
</div>
</body>
<script src="../js/jquery.min.js"></script>
<script src="../js/bootstrap.min.js"></script>
<script src="../js/bootstrap-table.min.js"></script>
</html>