-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
37 lines (30 loc) · 808 Bytes
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
<SCRIPT>
function passWord() {
var testV = 1;
var pass1 = prompt('Please Enter Your Password',' ');
while (testV < 3) {
if (!pass1)
history.go(-1);
if (pass1.toLowerCase() == "unhcrwoc") {
alert('You Got it Right!');
window.open('index2.html');
break;
}
testV+=1;
var pass1 =
prompt('Access Denied - Password Incorrect you can contact [email protected]','Password');
}
if (pass1.toLowerCase()!="password" & testV ==3)
history.go(-1);
return " ";
}
</SCRIPT>
<CENTER>
<FORM>
<input type="button" value="Enter Protected Area" onClick="passWord()">
</br>
<p>Greece sites on the mainland</a></p>
<div id="logo-container"><img id="logo" height="30" src="unhcr.png" alt="Logo"></div>
<p>Powered by the <a href="mailto:[email protected]">Winter Operations Cell</a></p>
</FORM>
</CENTER>