-
Notifications
You must be signed in to change notification settings - Fork 0
/
blackout.html
59 lines (45 loc) · 1.69 KB
/
blackout.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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
<!DOCTYPE html>
<html>
<head>
<link rel="icon" type="image/png" href="images/logo_wd.png" />
<meta charset="UTF-8">
<meta name="theme-color" content="#003030">
<title>BLACKOUT</title>
<link rel="stylesheet" href="style_sheet.css">
<style>
/*Color specific to the page*/
body {background-color : rgb(0, 50, 50);}
p, h1, h2, h3, a, label, legend, div {color:rgb(100, 100, 100); }
button, select {background-color: rgb(100, 100, 100);}
fieldset {border-color: rgb(100, 100, 100);}
</style>
<script src="http://code.jquery.com/jquery-1.11.0.min.js"></script>
<script type="text/javascript">
$(document).ready(function(){
$('#blackout').click(function(){
var a = new XMLHttpRequest();
a.open("GET","blackout.php");
a.onreadystatechange=function(){
if(a.readyState==4){
if(a.status == 200){
}else{
alert("HTTP ERROR");
}
}
}
a.send();
});
});
</script>
</head>
<body>
<center>
<input type="image" id="blackout" alt="Login" src="/images/blackout_wd.png">
</input>
<br/> <br/> <br/>
<p>V2.1</p>
<p>Pour plus d'options cliquer <a href="menu_page.html"> ici</a>.</p>
<p>[email protected]</p>
</center>
</body>
</html>