Advertisement
Guest User

Untitled

a guest
Aug 12th, 2018
145
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 3.70 KB | None | 0 0
  1. <!doctype html>
  2. <html>
  3.     <head>
  4.         <title>Hacking Game</title>
  5.         <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
  6.         <style>
  7.             body{
  8.                 height: 100%;
  9.                 width: 95%;
  10.                 overflow: hidden;
  11.                 background-color: #191919;
  12.             }
  13.             div.login{
  14.                 background-color: aliceblue;
  15.                 background-repeat: no-repeat;
  16.                 position: absolute;
  17.                 width: 450px;
  18.                 height: 500px;
  19.                 top: 15%;
  20.                 bottom: 15%;
  21.                 left: 35%;
  22.                 border-bottom-left-radius: 25px;
  23.                 border-bottom-right-radius: 25px;
  24.             }
  25.             input#username{
  26.                 position: absolute;
  27.                 background-color: dimgray;
  28.                 font-style: oblique;
  29.                 color: white;
  30.                 text-align: center;
  31.                 border-color: black;
  32.                 border-style: outset;
  33.                 left: 33%;
  34.                 top: 75%;
  35.             }
  36.             input#password{
  37.                 position: absolute;
  38.                 background-color: dimgray;
  39.                 font-style: oblique;
  40.                 color: white;
  41.                 text-align: center;
  42.                 border-color: black;
  43.                 border-style: outset;
  44.                 left: 33%;
  45.                 top: 80%;
  46.             }
  47.             input#loginbutton{
  48.                 position: absolute;
  49.                 background-color: dimgray;
  50.                 font-style: oblique;
  51.                 color: white;
  52.                 text-align: center;
  53.                 border-color: black;
  54.                 border-style: outset;
  55.                 left: 33%;
  56.                 width: 36%;
  57.                 top: 85%;
  58.             }
  59.             div.title{
  60.                 border-top-left-radius: 25px;
  61.                 border-top-right-radius: 25px;
  62.                 color: black;
  63.                 width: 450px;
  64.                 height: 50px;
  65.                 border-bottom-style: solid;
  66.                 border-bottom-color: black;
  67.                 border-bottom-width: 2.5px;
  68.                 left: 35%;
  69.                 position: absolute;
  70.                 top: 8%;
  71.                 z-index: 1;
  72.                 background-color: aqua;
  73.                 margin: none;
  74.                 padding: none;
  75.             }
  76.             p.titletext{
  77.                 position: absolute;
  78.                 left: 35%;
  79.                 margin-top: 0.1px;
  80.                 border: none;
  81.                 font-family: arial;
  82.                 font-size: 3vw;
  83.             }
  84.             div.loginimage{
  85.                 width: 290px;
  86.                 height: 290px;
  87.                 background-image: url(loginimg.png);
  88.                 background-color: aliceblue;
  89.                 background-repeat: no-repeat;
  90.                 left: 35%;
  91.                 background-size: 50% 50%;
  92.                 position: absolute;
  93.                 top: 25%;
  94.             }
  95.         </style>
  96.         <script>
  97.             $(document).ready(function(){
  98.                 var username = "root"
  99.                 var password = "toor"
  100.             });
  101.         </script>
  102.     </head>
  103.     <body>
  104.         <div class="title">
  105.             <p class="titletext">HackOS</p>
  106.         </div>
  107.         <div class="login">
  108.             <div class="loginimage"></div>
  109.             <input type="text" placeholder="root" id="username" class="loginparam" /><br>
  110.             <input type="password" placeholder="toor" id="password" class="loginparam" /><br>
  111.             <input type="button" value="login" id="loginbutton" class="loginbutton" />
  112.         </div>
  113.     </body>
  114. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement