Spaces:
Runtime error
Runtime error
<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> |