diff options
Diffstat (limited to 'index.html')
| -rw-r--r-- | index.html | 102 |
1 files changed, 102 insertions, 0 deletions
diff --git a/index.html b/index.html new file mode 100644 index 0000000..9c0c118 --- /dev/null +++ b/index.html @@ -0,0 +1,102 @@ +<!DOCTYPE html> +<html> + <head> + <title>Hello, world!</title> + <meta charset="UTF-8" /> + <meta name="viewport" content="width=device-width,initial-scale=1" /> + <meta name="description" content="" /> + <link rel="stylesheet" href="https://unpkg.com/xp.css" /> + <link rel="stylesheet" type="text/css" href="style.css" /> + <link rel="icon" href="img/favicon.png"> + <meta name="theme-color" content=""> + <meta property="og:title" content="" /> + <meta property="og:description" content="" /> + <meta property="og:image" content="" /> + <meta name="twitter:card" content=""> + <meta name="twitter:site" content=""> + <meta name="twitter:title" content=""> + <meta name="twitter:description" content=""> + <meta name="twitter:image" content=""> + </head> +<body> + +<!--<h1>Draggable DIV Element</h1> + +<p>Click and hold the mouse button down while moving the DIV element</p> --> + +<div class="window draggable" style="height:250px;width:575px;overflow:hidden;background-color:#000000;top:312px;left:627px;"> + <div class="title-bar divheader"> + <div class="title-bar-text">403 Directory Hostile Login Module</div> + <div class="title-bar-controls"> + <!-- <button aria-label="Minimize"></button> + <button aria-label="Maximize"></button> + <button aria-label="Close"></button> --> + </div> + </div> + <div style="padding:5px;"> + <div class="window-body" style="height:100%;"> + <pre id="typing-text" readonly style="height:100%;" ></pre> + </div> + </div> +</div> + +<div class="window draggable openable" style="width:270px;top:182px;left:304px;visibility:hidden;"> + <div class="title-bar divheader"> + <div class="title-bar-text">File 3: Illegal Login Attempt Detected</div> + <div class="title-bar-controls"> + <button onclick="HideWindow(event)" aria-label="Close"></button> + </div> + </div> + <div class="window-body"> + <p>Illegal Access Attempted.</p> + <p>You are <b>NOT</b> permitted to access this file.</p> + <p>This incident will be reported!</p> + </div> +</div> + +<div class="window draggable openable" style="width:280px;top:655px;left:1088px;visibility:hidden;"> + <div class="title-bar divheader"> + <div class="title-bar-text">File 1: Illegal Login Attempt Detected</div> + <div class="title-bar-controls"> + <button onclick="HideWindow(event)" aria-label="Close"></button> + </div> + </div> + <div class="window-body"> + <p>Illegal Access Attempted.</p> + <p>You are <b>NOT</b> permitted to access this file.</p> + <p>This incident will be reported!</p> + </div> +</div> + +<div class="window draggable openable" style="width:290px;top:591px;left:255px;visibility:hidden;"> + <div class="title-bar divheader"> + <div class="title-bar-text">File 4: Illegal Login Attempt Detected</div> + <div class="title-bar-controls"> + <button onclick="HideWindow(event)" aria-label="Close"></button> + </div> + </div> + <div class="window-body"> + <p>Illegal Access Attempted.</p> + <p>You are <b>NOT</b> permitted to access this file.</p> + <p>This incident will be reported!</p> + </div> +</div> + +<div class="window draggable openable" style="width:350px;top:90px;left:934px;visibility:hidden;"> + <div class="title-bar divheader"> + <div class="title-bar-text">😳 File 2: Everything on Display</div> + <div class="title-bar-controls"> + <button onclick="HideWindow(event)" aria-label="Close"></button> + </div> + </div> + <div class="window-body"> + <p>The hidden secrets are out. Everything we have gathered about the pretender who has been sleuthing and backstabbing us is all revealed. These documents are <b>Top Secret</b> and should not be shared so as not to tip off the imposter. When the time is right we will strike.</p> + + <p style="text-align:center;"><button onclick="window.location.href='https://imposter.exposed';">Open Classified Files</button></p> + </div> +</div> + +<script src='script.js'></script> + +</body> +</html> |
