39 lines
833 B
Java
39 lines
833 B
Java
<!DOCTYPE html>
|
|
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<style type="text/css">
|
|
body {
|
|
margin: 0 auto;
|
|
width: 900px;
|
|
background-color: #CCB;
|
|
}
|
|
.container {
|
|
width: 700px;
|
|
height: 700px;
|
|
margin: 0 auto;
|
|
}
|
|
img {
|
|
width: auto;
|
|
height: auto;
|
|
max-width: 100%;
|
|
max-height: 100%;
|
|
padding-bottom: 36px;
|
|
}
|
|
p {
|
|
display: block;
|
|
font-size: 20px;
|
|
color: blue;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="container">
|
|
<p>
|
|
预览源文件来自不受信任的站点:<span style="color: red; display: inline;">${current_host}</span> ,请联系管理员 <br>
|
|
</p>
|
|
</div>
|
|
</body>
|
|
|
|
</html> |