Spaces:
No application file
No application file
File size: 1,621 Bytes
29191d3 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>MTEB Leaderboard - Error</title>
<!-- Semi Design CSS -->
<link rel="stylesheet" href="https://unpkg.com/@douyinfe/semi-ui/dist/css/semi.min.css">
<!-- Custom CSS -->
<link rel="stylesheet" href="{{ url_for('static', path='css/style.css') }}">
<style>
.error-container {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
min-height: 100vh;
text-align: center;
padding: 20px;
}
.error-icon {
font-size: 48px;
color: #e74c3c;
margin: 20px 0;
}
.error-message {
font-size: 1.2em;
margin: 10px 0;
color: #666;
}
.retry-button {
margin-top: 20px;
padding: 10px 20px;
background-color: #3498db;
color: white;
border: none;
border-radius: 4px;
cursor: pointer;
text-decoration: none;
}
.retry-button:hover {
background-color: #2980b9;
}
</style>
</head>
<body>
<div class="error-container">
<h1>MTEB Leaderboard</h1>
<div class="error-icon">⚠️</div>
<h2>An Error Occurred</h2>
<p class="error-message">{{ error }}</p>
<a href="/" class="retry-button">Retry</a>
</div>
</body>
</html>
|