Files
cloudron-box/dashboard/oidc_error.html

57 lines
1.3 KiB
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>
<meta charset="UTF-8" />
2023-03-21 15:12:55 +01:00
<meta name="viewport" content="user-scalable=no, initial-scale=1, maximum-scale=1, minimum-scale=1, width=device-width, height=device-height" />
<title>OpenID Connect Error</title>
2023-05-11 12:15:10 +02:00
<link id="favicon" type="image/png" rel="icon" href="/api/v1/cloudron/avatar">
<link rel="apple-touch-icon" href="/api/v1/cloudron/avatar">
<link rel="icon" href="/api/v1/cloudron/avatar">
2023-04-27 16:20:32 +02:00
<style>
2024-04-06 10:52:25 +02:00
body {
2024-12-14 20:28:34 +01:00
display: flex;
flex-direction: column;
2024-04-06 10:52:25 +02:00
2024-12-14 20:28:34 +01:00
/* not using pankow*/
--pankow-text-color: black;
--pankow-color-primary: #2196f3;
2023-04-27 16:20:32 +02:00
}
2024-12-14 20:28:34 +01:00
@media (prefers-color-scheme: dark) {
body {
background-color: black;
--pankow-text-color: white;
}
2023-04-27 16:20:32 +02:00
}
2024-12-14 20:28:34 +01:00
.outer {
flex-grow: 1;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
text-align: center;
2023-04-27 16:20:32 +02:00
}
</style>
</head>
2023-03-21 15:12:55 +01:00
<body>
2024-12-14 20:28:34 +01:00
<div class="outer">
<img width="128" height="128" class="avatar" src="/api/v1/cloudron/avatar"/>
<br/>
<h2>OpenID Connect Error</h2>
<p>##ERROR_MESSAGE##</p>
<a href="/" style="padding: 10px;">Back</a>
2023-03-21 15:12:55 +01:00
</div>
2024-12-14 21:06:59 +01:00
<footer>##FOOTER##</footer>
2024-12-14 20:28:34 +01:00
2023-03-21 15:12:55 +01:00
</body>
</html>