Files
cloudron-box/src/oidc_templates/error.ejs

72 lines
1.5 KiB
Plaintext
Raw Normal View History

2023-03-21 15:12:55 +01:00
<!DOCTYPE html>
<html>
<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>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-03-21 15:12:55 +01:00
<!-- Theme CSS -->
<link type="text/css" rel="stylesheet" href="/theme.css">
2023-04-27 16:20:32 +02:00
<style>
.card {
padding: 20px;
margin-bottom: 0;
max-width: 620px;
min-height: 100%;
}
.avatar {
margin-top: 20px;
}
@media(min-width:620px) {
.card {
margin-bottom: 15px;
margin-top: 100px;
min-height: auto;
}
.avatar {
margin-top: -84px
}
}
</style>
2023-03-21 15:12:55 +01:00
</head>
<body>
<div class="layout-root">
<div class="layout-content">
2023-04-27 16:20:32 +02:00
<div class="card">
2023-03-21 15:12:55 +01:00
<div class="row">
<div class="col-md-12" style="text-align: center;">
2023-04-27 16:20:32 +02:00
<img width="128" height="128" class="avatar" src="/api/v1/cloudron/avatar"/>
2023-03-21 15:12:55 +01:00
<br/>
<h2>OpenID Connect Error</h2>
2023-03-21 15:12:55 +01:00
</div>
</div>
<br/>
<div class="row">
<div class="col-md-12 text-center">
2023-03-21 15:32:59 +01:00
<%= errorMessage %>
2023-03-21 15:12:55 +01:00
</div>
</div>
</div>
</div>
2023-08-11 13:36:46 +02:00
<footer class="text-center">
<span class="text-muted"><%- footer %></span>
</footer>
2023-03-21 15:12:55 +01:00
</div>
</body>
</html>