2021-09-08 18:04:56 +00:00
|
|
|
<!DOCTYPE html>
|
2021-09-07 14:44:15 +00:00
|
|
|
|
|
|
|
<html lang="en">
|
|
|
|
<head>
|
|
|
|
<meta charset="UTF-8">
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
|
|
|
|
<title>{{.Title}}</title>
|
2022-02-08 19:25:38 +00:00
|
|
|
<link rel="shortcut icon" type="image/png" href="/outpost.goauthentik.io/static/dist/assets/icons/icon.png">
|
|
|
|
<link rel="stylesheet" type="text/css" href="/outpost.goauthentik.io/static/dist/patternfly.min.css">
|
|
|
|
<link rel="stylesheet" type="text/css" href="/outpost.goauthentik.io/static/dist/authentik.css">
|
2022-02-14 19:04:57 +00:00
|
|
|
<link rel="stylesheet" type="text/css" href="/outpost.goauthentik.io/static/dist/custom.css">
|
2022-06-02 12:20:23 +00:00
|
|
|
<link rel="prefetch" href="/outpost.goauthentik.io/static/dist/assets/images/flow_background.jpg" />
|
2021-09-07 14:44:15 +00:00
|
|
|
<style>
|
|
|
|
.pf-c-background-image::before {
|
2022-02-08 19:25:38 +00:00
|
|
|
--ak-flow-background: url("/outpost.goauthentik.io/static/dist/assets/images/flow_background.jpg");
|
2021-09-07 14:44:15 +00:00
|
|
|
}
|
2022-06-02 12:20:23 +00:00
|
|
|
:root {
|
|
|
|
--ak-flow-background: url("/outpost.goauthentik.io/static/dist/assets/images/flow_background.jpg");
|
|
|
|
--pf-c-background-image--BackgroundImage: var(--ak-flow-background);
|
|
|
|
--pf-c-background-image--BackgroundImage-2x: var(--ak-flow-background);
|
|
|
|
--pf-c-background-image--BackgroundImage--sm: var(--ak-flow-background);
|
|
|
|
--pf-c-background-image--BackgroundImage--sm-2x: var(--ak-flow-background);
|
|
|
|
--pf-c-background-image--BackgroundImage--lg: var(--ak-flow-background);
|
|
|
|
}
|
2021-09-07 14:44:15 +00:00
|
|
|
</style>
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<div class="pf-c-background-image">
|
|
|
|
<svg xmlns="http://www.w3.org/2000/svg" class="pf-c-background-image__filter" width="0" height="0">
|
|
|
|
<filter id="image_overlay">
|
|
|
|
<feColorMatrix in="SourceGraphic" type="matrix" values="1.3 0 0 0 0 0 1.3 0 0 0 0 0 1.3 0 0 0 0 0 1 0" />
|
|
|
|
<feComponentTransfer color-interpolation-filters="sRGB" result="duotone">
|
|
|
|
<feFuncR type="table" tableValues="0.086274509803922 0.43921568627451"></feFuncR>
|
|
|
|
<feFuncG type="table" tableValues="0.086274509803922 0.43921568627451"></feFuncG>
|
|
|
|
<feFuncB type="table" tableValues="0.086274509803922 0.43921568627451"></feFuncB>
|
|
|
|
<feFuncA type="table" tableValues="0 1"></feFuncA>
|
|
|
|
</feComponentTransfer>
|
|
|
|
</filter>
|
|
|
|
</svg>
|
|
|
|
</div>
|
|
|
|
<div class="pf-c-login">
|
|
|
|
<div class="ak-login-container">
|
|
|
|
<header class="pf-c-login__header">
|
|
|
|
<div class="pf-c-brand ak-brand">
|
2023-01-06 11:44:51 +00:00
|
|
|
<img src="/outpost.goauthentik.io/static/dist/assets/icons/icon_left_brand.svg" alt="authentik Logo" />
|
2021-09-07 14:44:15 +00:00
|
|
|
</div>
|
|
|
|
</header>
|
|
|
|
<main class="pf-c-login__main">
|
|
|
|
<header class="pf-c-login__main-header">
|
|
|
|
<h1 class="pf-c-title pf-m-3xl">
|
|
|
|
{{ .Title }}
|
|
|
|
</h1>
|
|
|
|
</header>
|
|
|
|
<div class="pf-c-login__main-body">
|
|
|
|
{{ .Message }}
|
|
|
|
</div>
|
|
|
|
<div class="pf-c-login__main-body">
|
|
|
|
<a href="/" class="pf-c-button pf-m-primary pf-m-block">Go to home</a>
|
|
|
|
</div>
|
|
|
|
</main>
|
|
|
|
<footer class="pf-c-login__footer">
|
|
|
|
<p></p>
|
|
|
|
<ul class="pf-c-list pf-m-inline">
|
|
|
|
<li>
|
2021-10-20 14:31:10 +00:00
|
|
|
<a href="https://goauthentik.io?utm_source=authentik_outpost&utm_campaign=proxy_error">
|
2021-09-07 14:44:15 +00:00
|
|
|
Powered by authentik
|
|
|
|
</a>
|
|
|
|
</li>
|
|
|
|
</ul>
|
|
|
|
</footer>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</body>
|
|
|
|
</html>
|