document.write('
Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. <!DOCTYPE html>
  2. <html lang="en">
  3.   <head>
  4.     <meta charset="UTF-8" />
  5.     <meta http-equiv="X-UA-Compatible" content="IE=edge" />
  6.     <meta name="viewport" content="width=device-width, initial-scale=1.0" />
  7.     <title>BudakKorporat.id</title>
  8.     <link rel="stylesheet" href="style.css" />
  9.     <link
  10.      href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.2/dist/css/bootstrap.min.css"
  11.      rel="stylesheet"
  12.      integrity="sha384-uWxY/CJNBR+1zjPWmfnSnVxwRheevXITnMqoEIeG1LJrdI0GlVs/9cVSyPYXdcSF"
  13.      crossorigin="anonymous"
  14.    />
  15.   </head>
  16.   <body>
  17.     <div class="container">
  18.       <div class="row">
  19.         <div class="col">
  20.           <div class="right">
  21.             <h3><b>Sign in to Continue..</b></h3>
  22.             <form
  23.              autocomplete="off"
  24.              name="form"
  25.              onsubmit="return validateForm();"
  26.            >
  27.               <div class="form-content">
  28.                 <input
  29.                  type="text"
  30.                  id="person"
  31.                  name="person"
  32.                  placeholder="Email or Username"
  33.                  class="form-control"
  34.                  maxlength="20"
  35.                />
  36.               </div>
  37.               <div class="form-content">
  38.                 <input
  39.                  type="password"
  40.                  id="password"
  41.                  name="password"
  42.                  placeholder="Password"
  43.                  class="form-control"
  44.                  minlength="8"
  45.                />
  46.                 <input type="checkbox" onclick="myFunction()" />Show Password
  47.               </div>
  48.               <div class="icons">
  49.                 <p>
  50.                   <b><a href="#">Forgot Password?</a></b>
  51.                 </p>
  52.                 <p>or Sign in Using Integrated App Below..</p>
  53.                 <div class="icon">
  54.                   <a href="#"
  55.                    ><img src="assets/038-github.png" height="64px" width="64px"
  56.                  /></a>
  57.                 </div>
  58.                 <div class="icon">
  59.                   <a href="#"
  60.                    ><img
  61.                      src="assets/045-linkedin.png"
  62.                      height="64px"
  63.                      width="64px"
  64.                  /></a>
  65.                 </div>
  66.                 <div class="icon">
  67.                   <a href="#"
  68.                    ><img src="assets/gmail.png" height="72px" width="72px"
  69.                  /></a>
  70.                 </div>
  71.               </div>
  72.               <p>
  73.                 Have No Account Yet? <b><a href="#">Create a New One..</a></b>
  74.               </p>
  75.             <button type="submit">Submit</button>
  76.             </form>
  77.            
  78.           </div>
  79.         </div>
  80.         <div class="col">
  81.           <div class="left">
  82.             <h1><b>BudakKorporat.id</b></h1>
  83.             <p>
  84.               Shout Out to All Jobless Graduates, It\'s Your Time to Find a Dream
  85.               Job! Get a Kickstart to Be So Darn Rich Workaholic Through Being Such Budak
  86.               Korporat!
  87.             </p>
  88.           </div>
  89.         </div>
  90.       </div>
  91.     </div>
  92.     <script>
  93.       function myFunction() {
  94.         var x = document.getElementById("password");
  95.         if (x.type === "password") {
  96.           x.type = "text";
  97.         } else {
  98.           x.type = "password";
  99.         }
  100.       }
  101.  
  102.       function validateForm() {
  103.         if (document.forms["form"]["person"].value == "") {
  104.           alert("Invalid Email or Username.");
  105.           document.forms["form"]["person"].focus();
  106.           return false;
  107.         }
  108.         if (document.forms["form"]["password"].value == "") {
  109.             alert("Invalid Password.");
  110.             document.forms["form"]["password"].focus();
  111.             return false;
  112.         }  
  113.  
  114.         return true;
  115.       }
  116.     </script>
  117.   </body>
  118. </html>
');