forked from Xbot-me/voice-based-emailing-system
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patherror.php
More file actions
33 lines (27 loc) · 986 Bytes
/
Copy patherror.php
File metadata and controls
33 lines (27 loc) · 986 Bytes
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
<!DOCTYPE html>
<html lang="en" >
<head>
<meta charset="UTF-8">
<meta http-equiv="refresh" content="6;url=how_to_answer.php" />
<title>WELCOME</title>
<link rel='stylesheet' href='http://fonts.googleapis.com/css?family=Roboto'>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<style>
body{
background-image: url("images/heart.gif"); /* The image used */
background-repeat: no-repeat; /* Do not repeat the image */
background-size: cover; /* Resize the background image to cover the entire container */
}
</style>
</head>
<body>
<div style="display: none">
<audio autoplay>
<source src="sounds/error.mp3">
</audio>
</div>
<script>
setTimeout(function(){history.back();}, 5000);
</script>
</body>
</html>