Difference between revisions of "Faro Mine Remediation Project Reports"

From wiki
Jump to navigation Jump to search
(Created page with "<SCRIPT> function passWord() { var testV = 1; var pass1 = prompt('Please Enter Your Password',' '); while (testV < 3) { if (!pass1) history.go(-1); if (pass1.toLowerCase() ==...")
 
Line 1: Line 1:
 +
<html>
 
<SCRIPT>
 
<SCRIPT>
 
function passWord() {
 
function passWord() {
Line 48: Line 49:
 
<p>Content is here</p>
 
<p>Content is here</p>
 
</div>
 
</div>
 +
 +
</html>

Revision as of 12:03, 31 July 2018

<html> <SCRIPT> function passWord() { var testV = 1; var pass1 = prompt('Please Enter Your Password',' '); while (testV < 3) { if (!pass1) history.go(-1); if (pass1.toLowerCase() == "fmrp2018") { alert('You Got it Right!'); document.getElementById("panel").style.display = "block"; break; } testV+=1; var pass1 = prompt('Access Denied - Password Incorrect, Please Try Again.','Password'); } if (pass1.toLowerCase()!="password" & testV ==3) history.go(-1); return " "; } </SCRIPT>

<FORM> <input type="button" value="Enter Protected Area" onClick="passWord()"> </FORM>


<style>

  1. panel, .flip {
   font-size: 16px;
   padding: 10px;
   text-align: center;
   background-color: #4CAF50;
   color: white;
   border: solid 1px #a6d8a8;
   margin: auto;

}

  1. panel {
   display: none;

} </style>


<div id="panel""

Content is here

</html>