32 lines
960 B
HTML
32 lines
960 B
HTML
<!DOCTYPE html>
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>401 - Unauthorized</title>
|
|
<style>
|
|
/* Styla body för att ta upp hela skärmen och centrera innehållet */
|
|
body, html {
|
|
height: 100%;
|
|
margin: 0;
|
|
display: flex;
|
|
justify-content: center; /* Horisontell centrering */
|
|
align-items: center; /* Vertikal centrering */
|
|
font-family: Arial, sans-serif;
|
|
}
|
|
|
|
/* Anpassa stilen för texten */
|
|
.centered-text {
|
|
text-align: center;
|
|
font-size: 24px;
|
|
color: #333;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="centered-text">
|
|
<h1>401 - Unauthorized</h1>
|
|
<p />The SSO proxy did not find your user in any groups in the SSO proxy config.
|
|
<p />To gain access your user must be added to a trusted group.
|
|
</div>
|
|
</body>
|
|
</html>
|