|
<!DOCTYPE html> |
|
<html> |
|
<head> |
|
<title>Error - Sign Language Boundary Annotation Tool</title> |
|
<style> |
|
body { |
|
background: #0e1117; |
|
color: white; |
|
font-family: sans-serif; |
|
margin: 0; |
|
padding: 20px; |
|
} |
|
.container { |
|
max-width: 800px; |
|
margin: 0 auto; |
|
padding: 20px; |
|
text-align: center; |
|
} |
|
.error-message { |
|
background: #262730; |
|
padding: 20px; |
|
border-radius: 5px; |
|
margin: 20px 0; |
|
color: #ff4444; |
|
} |
|
button { |
|
background: #262730; |
|
color: white; |
|
border: 1px solid #555; |
|
padding: 10px 20px; |
|
cursor: pointer; |
|
margin: 5px; |
|
} |
|
button:hover { |
|
background: #363840; |
|
} |
|
</style> |
|
</head> |
|
<body> |
|
<div class="container"> |
|
<h1>Error</h1> |
|
<div class="error-message"> |
|
{{ message }} |
|
</div> |
|
<button onclick="window.history.back()">Go Back</button> |
|
<button onclick="window.location.href='/'">Return to Home</button> |
|
</div> |
|
</body> |
|
</html> |