Files
cloudron-box/dashboard/oidc_interaction_abort.html

57 lines
1.3 KiB
HTML
Raw Normal View History

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="user-scalable=no, initial-scale=1, maximum-scale=1, minimum-scale=1, width=device-width, height=device-height" />
<title>Authorize ##NAME##</title>
<link rel="icon" href="/api/v1/cloudron/avatar">
<link rel="apple-touch-icon" href="/api/v1/cloudron/avatar">
2023-05-11 12:15:10 +02:00
<script type="module" src="./src/style.js"></script>
2023-04-27 16:20:32 +02:00
<style>
2024-04-06 10:52:25 +02:00
body {
display: flex;
flex-direction: column;
2023-04-27 16:20:32 +02:00
/* not using pankow*/
--pankow-text-color: black;
--pankow-color-primary: #2196f3;
2023-04-27 16:20:32 +02:00
}
@media (prefers-color-scheme: dark) {
body {
background-color: black;
--pankow-text-color: white;
2023-04-27 16:20:32 +02:00
}
}
2023-04-27 16:20:32 +02: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-11 17:22:27 +01:00
<body>
<div class="outer">
<img width="128" height="128" class="avatar" src="##ICON_URL##"/>
<br/>
<h2>You do not have access to <b>##NAME##</b></h2>
<a class="btn btn-primary btn-outline" href="##SUBMIT_URL##">Continue</a>
</div>
2023-03-11 17:22:27 +01:00
<footer>##FOOTER##</footer>
2023-03-11 17:22:27 +01:00
</body>
</html>