| Davit Tabidze | 5f00a39 | 2024-08-13 18:37:02 +0400 | [diff] [blame] | 1 | <!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> |
| gio | c81a847 | 2024-09-24 13:06:19 +0200 | [diff] [blame] | 7 | <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 Tabidze | 5f00a39 | 2024-08-13 18:37:02 +0400 | [diff] [blame] | 9 | <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 }} |
| 18 | <a href="{{ $.MembershipPublicAddr }}/group/{{ $group }}">{{ $group }}</a>{{ if not (IsLast $index $.Groups) }},{{ end }} |
| 19 | {{ end }} |
| 20 | are authorized to access this page. |
| 21 | </p> |
| 22 | </div> |
| 23 | </main> |
| 24 | </body> |
| 25 | </html> |