-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path404.html
28 lines (28 loc) · 951 Bytes
/
404.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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
</head>
<body>
<audio src="connect.mp3" preload="auto" id="connect"></audio>
<audio src="disconnect.mp3" preload="auto" id="disconnect"></audio>
Sorry, the bluetooth device is ready to pair. Please try again later.<br>
<button onclick="btnClick();" id="btn">Try Again</button>
<script>
var connect = document.getElementById('connect');
var disconnect = document.getElementById('disconnect');
var btn = document.getElementById('btn');
function btnClick() {
try { disconnect.play(); } catch (e) {}
btn.onclick = function() {
try { connect.play(); } catch(e) {}
this.style.display = 'none';
};
btn.innerHTML = 'Don\'t Click this Button Again.';
}
</script>
<h1><a href="/Wii-Settings/">Wii Settings</a></h1>
<h1><a href="/Wii-Internet-Channel-Help/">Wii Internet Channel Help</a></h1>
</body>
</html>