Create error page template

This commit is contained in:
2025-07-14 10:57:29 -05:00
parent c9e3851fc9
commit a2ae6a0684

View File

@ -0,0 +1,66 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Error - Discord Voice Translator</title>
<!-- Bootstrap CSS -->
<link href="https://cdnjs.cloudflare.com/ajax/libs/bootstrap/5.3.2/css/bootstrap.min.css" rel="stylesheet">
<!-- Font Awesome -->
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css" rel="stylesheet">
<style>
body {
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
min-height: 100vh;
display: flex;
align-items: center;
justify-content: center;
}
.error-container {
background: rgba(255, 255, 255, 0.95);
backdrop-filter: blur(10px);
border-radius: 15px;
box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
padding: 40px;
text-align: center;
max-width: 500px;
}
.error-icon {
color: #e74c3c;
font-size: 4rem;
margin-bottom: 20px;
}
.btn-home {
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
border: none;
border-radius: 25px;
padding: 12px 30px;
color: white;
font-weight: 500;
transition: transform 0.3s ease;
}
.btn-home:hover {
transform: translateY(-2px);
color: white;
}
</style>
</head>
<body>
<div class="error-container">
<i class="fas fa-exclamation-triangle error-icon"></i>
<h2 class="mb-3">Oops! Something went wrong</h2>
<p class="text-muted mb-4"><%= error %></p>
<a href="/" class="btn btn-home">
<i class="fas fa-home me-2"></i>Back to Dashboard
</a>
</div>
</body>
</html>