57 lines
1.3 KiB
HTML
57 lines
1.3 KiB
HTML
<!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">
|
|
|
|
<script type="module" src="./src/style.js"></script>
|
|
|
|
<style>
|
|
|
|
body {
|
|
display: flex;
|
|
flex-direction: column;
|
|
|
|
/* not using pankow*/
|
|
--pankow-text-color: black;
|
|
--pankow-color-primary: #2196f3;
|
|
}
|
|
|
|
@media (prefers-color-scheme: dark) {
|
|
body {
|
|
background-color: black;
|
|
--pankow-text-color: white;
|
|
}
|
|
}
|
|
|
|
.outer {
|
|
flex-grow: 1;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
justify-content: center;
|
|
text-align: center;
|
|
}
|
|
|
|
</style>
|
|
|
|
</head>
|
|
<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>
|
|
|
|
<footer>##FOOTER##</footer>
|
|
|
|
</body>
|
|
</html>
|