Spaces:
Runtime error
Runtime error
Create error.html
Browse files- error.html +20 -0
error.html
ADDED
@@ -0,0 +1,20 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<!DOCTYPE html>
|
2 |
+
<html lang="en">
|
3 |
+
<head>
|
4 |
+
<meta charset="UTF-8">
|
5 |
+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
6 |
+
<title>Error</title>
|
7 |
+
</head>
|
8 |
+
<body>
|
9 |
+
<div>
|
10 |
+
<h1>An Error Occurred</h1>
|
11 |
+
<p>{{ error }}</p>
|
12 |
+
<p>Redirecting in 10 secondds</p>
|
13 |
+
</div>
|
14 |
+
<script>
|
15 |
+
setTimeout(()=>{
|
16 |
+
window.location.href = '/'
|
17 |
+
},10000)
|
18 |
+
</script>
|
19 |
+
</body>
|
20 |
+
</html>
|