movies_Analysis / error.html
Faizan15's picture
Create error.html
a7e74e7
raw
history blame
No virus
430 Bytes
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Error</title>
</head>
<body>
<div>
<h1>An Error Occurred</h1>
<p>{{ error }}</p>
<p>Redirecting in 10 secondds</p>
</div>
<script>
setTimeout(()=>{
window.location.href = '/'
},10000)
</script>
</body>
</html>