https://dbagny.online/dbny/enter.cfm

Eingereichte URL:
https://dbagny.online/dbny/enter.cfm
Bericht beendet:

JavaScript-Variablen · 5 gefunden

NameTyp
onbeforetoggleobject
documentPictureInPictureobject
onscrollendobject
myFunctionfunction
my2Functionfunction

Konsolenprotokoll-Meldungen · 5 gefunden

TypKategorieProtokoll
warningdom
URL
https://dbagny.online/dbny/enter.cfm
Text
[DOM] Found 2 elements with non-unique id #myInput: (More info: https://goo.gl/9p2vKq) %o %o
verbosedom
URL
https://dbagny.online/dbny/enter.cfm
Text
[DOM] Input elements should have autocomplete attributes (suggested: "new-password"): (More info: https://goo.gl/9p2vKq) %o
verbosedom
URL
https://dbagny.online/dbny/enter.cfm
Text
[DOM] Input elements should have autocomplete attributes (suggested: "new-password"): (More info: https://goo.gl/9p2vKq) %o
verbosedom
URL
https://dbagny.online/dbny/enter.cfm
Text
[DOM] Input elements should have autocomplete attributes (suggested: "new-password"): (More info: https://goo.gl/9p2vKq) %o
errornetwork
URL
https://dbagny.online/favicon.ico
Text
Failed to load resource: the server responded with a status of 404 (Not Found)

HTML

<!DOCTYPE html><html><head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="w3.css">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.7.0/css/all.css" integrity="sha384-lZN37f5QGtY3VHgisS14W3ExzMWZxybE1SJSEsQp9S+oqd12jhcu+A56Ebc1zFSJ" crossorigin="anonymous">
<title>Welcome | Services Tailored To Suite Your Lifestyle</title>

<style>
form {
    border: 1px solid #f1f1f1;
}

input[type=text], input[type=password] {
    width: 100%;
    padding: 12px 20px;
    margin: 8px 0;
    display: inline-block;
    border: 1px solid #ccc;
    box-sizing: border-box;
}

button {
    background-color: #273691;
    color: white;
    padding: 14px 20px;
    margin: 8px 0;
    border: none;
    cursor: pointer;
    width: 100%;
}

.cancelbtn {
    width: auto;
    padding: 10px 18px;
}

.imgcontainer {
    text-align: center;
    margin: 24px 0 12px 0;
}

img.avatar {
    width: 27%;
}

img.avatar1 {
    width: 50%;
}

.container {
    padding: 16px;
}

span.psw {
    float: right;
    padding-top: 16px;
}

/* Change styles for span and cancel button on extra small screens */
@media screen and (max-width: 300px) {
    span.psw {
       display: block;
       float: none;
    }
    .cancelbtn {
       width: 100%;
    }
}
</style>

<style>
.w3-hover-one:hover{color:white!important;background-color:#0018A8!important}
</style>

</head>
<body>
<br>
<div>
<h2 align="center" style="text-transform:uppercase;" class="w3-hide-medium w3-hide-small">Secure Online Portal</h2>
<h4 align="center" style="text-transform:uppercase;" class="w3-hide-large w3-hide-small">Secure Online Portal</h4>
<h6 align="center" style="text-transform:uppercase;" class="w3-hide-large w3-hide-medium">Secure Online Portal</h6>

<hr style="width:50%; margin:0 auto; border: 0; border-top: 1px solid #eee;">

<div class="w3-hide-small imgcontainer">
<img src="lock2.png" alt="Lock" style="width:200px; height:200px;">
</div>

<br> 
 
<div style="width:50%; margin:0 auto;" class="w3-card-4 w3-hide-small w3-hide-medium">
<form target="_self" method="POST" action="loginprocess.cfm">
<br>  
<div class="container">
<label class="w3-text-grey"><b>Login Key</b></label> <i class="fas fa-lock" style="font-size:16px;color:grey"></i>
<input type="password" placeholder="Enter Login Key [5 Digits]*" name="LoginKey" required="" maxlength="5" pattern="[0-9]{5}" id="myInput" title="Allowed: Numbers Only.">
<input type="checkbox" onclick="myFunction()"><span class="w3-text-grey"> Show Login Key</span>
<br>   
<button type="submit" class="w3-card-4 w3-hover-one w3-wide w3-round" style="background-color:#00a3e0;">Login</button>
</div>

<div class="container" style="background-color:#f1f1f1">
<div align="center"><button class="cancelbtn" style="background-color:#0018A8;color:white;cursor: context-menu;" disabled=""> <i class="fas fa-shield-alt" style="font-size:16px;color:white"></i> PRIVATE WEALTH ACCESS</button></div>
</div>
</form>

<script>
function myFunction() {
  var x = document.getElementById("myInput");
  if (x.type === "password") {
    x.type = "text";
  } else {
    x.type = "password";
  }
}
</script>
</div>

<div style="width:80%; margin:0 auto;" class="w3-card-4 w3-hide-small w3-hide-large">
<form target="_self" method="POST" action="loginprocess.cfm">
<br>  
<div class="container">
<label class="w3-text-grey"><b>Login Key</b></label> <i class="fas fa-lock" style="font-size:16px;color:grey"></i>
<input type="password" placeholder="Enter Login Key [5 Digits]*" name="LoginKey" required="" maxlength="5" pattern="[0-9]{5}" id="myInput" title="Allowed: Numbers Only.">
<input type="checkbox" onclick="myFunction()"><span class="w3-text-grey"> Show Login Key</span>
<br>   
<button type="submit" class="w3-card-4 w3-hover-one w3-wide w3-round" style="background-color:#00a3e0;">Login</button>
</div>

<div class="container" style="background-color:#f1f1f1">
<div align="center"><button class="cancelbtn" style="background-color:#0018A8;color:white;cursor: context-menu;" disabled=""> <i class="fas fa-shield-alt" style="font-size:16px;color:white"></i> PRIVATE WEALTH ACCESS</button></div>
</div>
</form>

<script>
function myFunction() {
  var x = document.getElementById("myInput");
  if (x.type === "password") {
    x.type = "text";
  } else {
    x.type = "password";
  }
}
</script>
</div>

<div class="imgcontainer w3-hide-large w3-hide-medium" style="margin-top:-5px;">
<img src="lock2.png" alt="Lock" style="width:100px; height:100px;">
</div>

<br>

<div style="width:90%; margin:0 auto;" class="w3-card-4 w3-hide-large w3-hide-medium">
<form target="_self" method="POST" action="loginprocess.cfm">
<br>
<div class="container">
<label class="w3-text-grey"><b>Login Key</b></label> <i class="fas fa-lock" style="font-size:16px;color:grey"></i>
<input type="password" placeholder="Enter Login Key [5 Digits]*" name="LoginKey" required="" maxlength="5" pattern="[0-9]{5}" id="my2Input" title="Allowed: Numbers Only.">
<input type="checkbox" onclick="my2Function()"><span class="w3-text-grey"> Show Login Key</span>
<br>  
<button type="submit" class="w3-card-4 w3-hover-one w3-wide w3-round" style="background-color:#00a3e0;">Login</button>
</div>

<div class="container" style="background-color:#f1f1f1">
<div align="center"><button class="cancelbtn" style="background-color:#0018A8;color:white;cursor: context-menu;" disabled=""> <i class="fas fa-shield-alt" style="font-size:16px;color:white"></i> PRIVATE WEALTH ACCESS</button></div>
</div>
</form>

<script>
function my2Function() {
  var x = document.getElementById("my2Input");
  if (x.type === "password") {
    x.type = "text";
  } else {
    x.type = "password";
  }
}
</script>
</div>

</div>
<br>
<br>

</body></html>