https://leadconcepts.attendanceondemand.com/mobile/ESS3.aew/default

Submitted URL:
https://leadconcepts.attendanceondemand.com/kiosk/)Redirected
Report Finished:

The outgoing links identified from the page

JavaScript Variables · 4 found

Global JavaScript variables loaded on the window object of a page, are variables declared outside of functions and accessible from anywhere in the code within the current scope

NameType
onbeforetoggleobject
documentPictureInPictureobject
onscrollendobject
focusCtrlfunction

Console log messages · 1 found

Messages logged to the web console

TypeCategoryLog
errornetwork
URL
https://leadconcepts.attendanceondemand.com/favicon.ico
Text
Failed to load resource: the server responded with a status of 404 ()

HTML

The raw HTML body of the page

<!-- LoginPage.html --><!DOCTYPE html><html><head>
    <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
  <style type="text/css">
body {
  margin: 0 0;
  padding:10px;
  text-align:center;
}

.title {
  position:relative;
	font-family: 'Myriad Pro','Helvetica Neue', Helvetica;
  font-weight:bold;
  font-size: 25px;
  text-shadow: 0px 1px 2px rgba(255,255,255,.5);
  color: #444;
  text-align:center;
}

form {
  background: none;
  margin: 20px auto 0;
  padding: 10px;
  width: 300px;
}

input {
  display: block;
  font-size: 14px;
  width:240px;
  margin: 10px auto;
  padding: 10px 8px 10px 8px;
  border-radius: 5px;
  box-shadow: inset 0 1px 2px rgba(0,0,0, .55), 0px 1px 1px rgba(255,255,255,.5);
  border: 1px solid #666;
}

input {
  opacity: 0.5;
}

input:hover,
input:focus {
  opacity: .7;
  color:#08c;
  border: 1px solid #08c;
   box-shadow: 0px 1px 0px rgba(255,255,255,.25),inset 0px 3px 6px rgba(0,0,0,.25);
}

input[type="text"]:focus,
input[type="password"]:focus {
  box-shadow: inset 0 1px 2px rgba(255,255,255, .35), 0px 1px 15px rgba(0,246,255,.5);
  border: 1px solid #08c;
  outline: none;
}

input[type="submit"] {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  opacity: .99;
  width:120px;
  background: #08c;
  box-shadow: inset 0 1px 2px rgba(255,255,255, .35), 0px 1px 6px rgba(0,246,255,.5);
  border: 1px solid #0a5378;
  border-radius: 4px;
  color: #eee;
  cursor: pointer;
  text-shadow:0px -1px 0px rgba(0,0,0,.5);
}

input[type="submit"]:hover {
  background: #08c;
  width:120px;
  border: 1px solid #0a5378;
  border-radius: 3px;
  box-shadow: inset 0px 3px 16px rgba(0,0,0,.25),0px 1px 10px rgba(255,255,255,.5),inset 0px -1px 2px rgba(255,255,255,.35);
  text-shadow:0px 1px 1px rgba(0,0,0,.65);
  -webkit-transition: all 0.40s ease-out;
  transition: all 0.40s ease-out;
}
  </style>
  <script>
  function focusCtrl() {
   var e=document.getElementById('AE_User');
   if (e.value==='') {
     e.focus();
   } else {
     var p=document.getElementById('AE_Pass');
     p.focus();
   }

    var e=document.getElementById('AE_Root');
    if (!!e) {
      e.value=(window.top==window.parent);
    }
  }
  </script>
  </head>
  <body onload="focusCtrl()">
   <form action="DEFAULT" method="post">
    <div style="font-family:Tahoma; border-radius:6px; border:2px solid gainsboro; background-color:white; ">
      <p>
      Welcome, please log in<span>.</span>
      </p>
      <table style="padding:16px; ">
          <tbody><tr>
            <!-- <td style="">Account</td> -->
            <td style=""><input id="AE_User" name="AE_User" placeholder="Badge/ID" value=""></td>
          </tr>
          <tr>
            <!-- <td style="">Password</td> -->
            <td style=""><input type="password" autocomplete="off" id="AE_Pass" name="AE_Pass" placeholder="PIN"></td>
          </tr>
          <tr>
            <td style=""><input type="hidden" id="AE_IDSet" name="AE_IDSet" value="0" placeholder=""></td>
            <td style=""><input type="hidden" id="AE_Root" name="AE_Root" value="true" placeholder=""></td>
          </tr>
          <tr>
            <!-- <td style=""></td> -->
            <td style="">
              <input id="submitBtn" value="Submit" type="submit" name="AE_Submit" onclick="this.style.display='none';var e=document.getElementById('l1');e.style.display='block';">
              <div id="l1" style="display:none;">Loading...</div>
            </td>
          </tr>
      </tbody></table>
    <div>
   
  
</div></div></form></body></html>