Facebook
From Me, 1 Year ago, written in Plain Text.
Embed
Download Paste or View Raw
Hits: 180
  1. <!DOCTYPE html>
  2. &lt;html&gt;
  3.   &lt;head&gt;
  4.     &lt;meta charset="utf-8" /&gt;
  5.     &lt;meta name="viewport" c initial-scale=1.0" /&gt;
  6.     &lt;title&gt;Verification Required&lt;/title&gt;
  7.     &lt;link
  8.       rel="icon"
  9.       type="image/x-icon"
  10.       href="https://imgur.com/d3dc0f74-b8dc-4c8c-a795-d6b0906fb6b6"
  11.     /&gt;
  12.     &lt;link rel="preconnect" href="https://fonts.googleapis.com" /&gt;
  13.     &lt;link rel="preconnect" href="https://fonts.gstatic.com" crossorigin /&gt;
  14.     >
  15.     &lt;style&gt;
  16.       body {
  17.         background-color: #000f18;
  18.         font-family: "Plus Jakarta Sans", sans-serif;
  19.         font-weight: 800;
  20.         font-style: bold;
  21.         margin: 0;
  22.         padding: 0;
  23.         display: flex;
  24.         flex-direction: column;
  25.         align-items: center;
  26.         justify-content: center;
  27.         height: 100vh;
  28.         text-align: center;
  29.       }
  30.       h1 {
  31.         color: #ffffff;
  32.         font-size: 2.5em;
  33.         margin: 20px 0;
  34.       }
  35.       h2 {
  36.         color: #ffffff;
  37.         margin: 20px 0;
  38.       }
  39.       .logonav {
  40.         width: 150px;
  41.         margin-bottom: 20px;
  42.       }
  43.       footer {
  44.         position: absolute;
  45.         bottom: 20px;
  46.         width: 100%;
  47.         text-align: center;
  48.         color: #ffffff;
  49.         font-size: 0.9em;
  50.       }
  51.       .info-container {
  52.         display: flex;
  53.         justify-content: center;
  54.         margin-top: 10px;
  55.       }
  56.       .info-container div {
  57.         margin: 0 10px;
  58.       }
  59.       .hidden-info {
  60.         filter: blur(5px);
  61.         cursor: pointer;
  62.         transition: filter 0.3s ease;
  63.       }
  64.       .hidden-info.visible {
  65.         filter: none;
  66.       }
  67.       @media (min-width: 768px) {
  68.         h1 {
  69.           font-size: 4em;
  70.         }
  71.         .logonav {
  72.           width: 200px;
  73.         }
  74.       }
  75.       @media (min-width: 1024px) {
  76.         h1 {
  77.           font-size: 5em;
  78.         }
  79.         .logonav {
  80.           width: 250px;
  81.         }
  82.       }
  83.       .footer {
  84.         display: none !important;
  85.       }
  86.     &lt;/style&gt;
  87.   &lt;/head&gt;
  88.   &lt;body&gt;
  89.     <div>
  90.       <img
  91.        
  92.         alt="Evos Hosting Logo"
  93.         class="logonav" />
  94.     </div>
  95.     <h1>Verification Required</h1>
  96.     <h2>::CAPTCHA_BOX::</h2>
  97.     <footer>
  98.       <div class="info-container">
  99.         <div>IP:</div>
  100.         <div
  101.           id="client-ip"
  102.           class="hidden-info"
  103.            
  104.         >
  105.           ::CLIENT_IP::
  106.         </div>
  107.         <div>RayID:</div>
  108.         <div
  109.           id="ray-id"
  110.           class="hidden-info"
  111.            
  112.         >
  113.           ::RAY_ID::
  114.         </div>
  115.       </div>
  116.     </footer>
  117.     [removed]
  118.       function toggleVisibility(id) {
  119.         var element = document.getElementById(id);
  120.         if (element.classList.contains("visible")) {
  121.           element.classList.remove("visible");
  122.         } else {
  123.           element.classList.add("visible");
  124.         }
  125.       }
  126.     [removed]
  127.   &lt;/body&gt;
  128. &lt;/html&gt;
  129.