blob: 28c8913e4e2502622a58d5c1ee9fe0923faca4e3 [file] [log] [blame]
Davit Tabidze5f00a392024-08-13 18:37:02 +04001<!DOCTYPE html>
2<html lang="en" data-theme="light">
3<head>
4 <meta charset="UTF-8">
5 <meta name="viewport" content="width=device-width, initial-scale=1.0">
6 <title>Auth Proxy</title>
gioc81a8472024-09-24 13:06:19 +02007 <link rel="stylesheet" href="/.auth/static/pico.2.0.6.min.css">
8 <link rel="stylesheet" href="/.auth/static/main.css?v=0.0.1">
Davit Tabidze5f00a392024-08-13 18:37:02 +04009 <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/hack-font/3.3.0/web/hack.min.css">
10</head>
11<body>
12 <main class="container">
13 <div>
14 <h1>Unauthorized</h1>
15 <p>
16 Only members of
17 {{ range $index, $group := .Groups }}
gio134be722025-07-20 19:01:17 +040018 <a href="{{ $.MembershipPublicAddr }}/group/{{ $group.Id }}">{{ $group.Title }}</a>{{ if not (IsLast $index $.Groups) }},{{ end }}
Davit Tabidze5f00a392024-08-13 18:37:02 +040019 {{ end }}
20 are authorized to access this page.
21 </p>
22 </div>
23 </main>
24</body>
25</html>