Permalink
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
eoefans-challenge-page/Always_Online.html
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
44 lines (44 sloc)
986 Bytes
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8" /> | |
<meta http-equiv="X-UA-Compatible" content="IE=edge" /> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | |
<title>EOEFANS 防火墙质询</title> | |
</head> | |
<style> | |
* { | |
box-sizing: border-box; | |
} | |
main { | |
width: 100%; | |
height: 80vh; | |
box-sizing: border-box; | |
padding: 40px; | |
} | |
.item { | |
margin: 10px 20px; | |
height: 150px; | |
} | |
.check-box { | |
margin: 10px 20px; | |
min-height: 300px; | |
display: flex; | |
align-items: center; | |
justify-content: center; | |
} | |
</style> | |
<body> | |
<main> | |
<section class="item"> | |
<h2>服务不可用/当前维护中 </h2> | |
<div> | |
您的IP为: ::CLIENT_IP:: | |
<br /> | |
RAY_ID为: ::RAY_ID:: | |
</div> | |
</section> | |
<div class="check-box">::ALWAYS_ONLINE_NO_COPY_BOX::</div> | |
</main> | |
</body> | |
</html> |