Files
mediacms/templates/lti/launch_error.html
Markos Gogoulos 295578dae2 lti
2025-12-24 17:28:12 +02:00

59 lines
1.6 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>LTI Launch Error</title>
<style>
body {
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
max-width: 600px;
margin: 50px auto;
padding: 20px;
background-color: #f5f5f5;
}
.error-container {
background: white;
border-radius: 8px;
padding: 30px;
box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
h1 {
color: #d32f2f;
margin-top: 0;
}
.error-icon {
font-size: 48px;
color: #d32f2f;
margin-bottom: 20px;
}
.error-message {
background: #ffebee;
border-left: 4px solid #d32f2f;
padding: 15px;
margin: 20px 0;
border-radius: 4px;
}
.help-text {
color: #666;
font-size: 14px;
margin-top: 20px;
}
</style>
</head>
<body>
<div class="error-container">
<div class="error-icon">⚠️</div>
<h1>{{ error }}</h1>
<div class="error-message">
<strong>Error Details:</strong><br>
{{ message }}
</div>
<div class="help-text">
<p>If this problem persists, please contact your system administrator.</p>
<p>You may close this window and try again.</p>
</div>
</div>
</body>
</html>