Files
cloudron-box/dashboard/oidc_error.html

17 lines
336 B
HTML
Raw Normal View History

2023-03-21 15:12:55 +01:00
<!DOCTYPE html>
2024-12-14 20:28:34 +01:00
<html lang="en">
<head>
2025-07-11 14:26:57 +02:00
<title><%= name %> OpenID Error</title>
2023-03-21 15:12:55 +01:00
2025-03-29 15:32:53 +01:00
<script>
2026-03-18 10:58:00 +01:00
window.cloudron = <%- JSON.stringify({ iconUrl, name, errorMessage, footer, language }) %>;
2025-03-29 15:32:53 +01:00
</script>
2023-03-21 15:12:55 +01:00
2025-03-29 15:32:53 +01:00
</head>
2024-12-14 20:28:34 +01:00
2025-03-29 15:32:53 +01:00
<body>
<div id="app"></div>
<script type="module" src="/src/oidcerror.js"></script>
</body>
2023-03-21 15:12:55 +01:00
</html>