25 lines
622 B
HTML
25 lines
622 B
HTML
<html>
|
|
<head>
|
|
<title>Website protection</title>
|
|
<style>
|
|
body {
|
|
background-color: #1d70b7;
|
|
}
|
|
.centered {
|
|
position: fixed;
|
|
top: 50%;
|
|
left: 50%;
|
|
transform: translate(-50%, -50%);
|
|
text-align: center;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="centered" style="color: white;">
|
|
<h1>As a security measure, we ask you to complete this captcha to access our website :</h1>
|
|
%CAPTCHA%
|
|
<div>🛡️ this website is protected with <a href="https://github.com/bunkerity/bunkerized-nginx" target="_blank">bunkerized-nginx</a> 🛡️</div>
|
|
</div>
|
|
</body>
|
|
</html>
|