Show SSO landing page instead of immediate redirect

The login page now shows the service name and a "Sign in with MCIAS"
button instead of immediately redirecting to MCIAS. This lets the user
know what service they are logging into before the redirect.

- GET /login renders the landing page with SSO button
- GET /sso/redirect initiates the actual SSO redirect
- Non-SSO login form still works when SSO is not configured

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
2026-03-30 16:40:25 -07:00
parent 908aaed168
commit 8eeab91cbd
4 changed files with 19 additions and 4 deletions

View File

@@ -245,8 +245,8 @@ func TestLoginPageRenders(t *testing.T) {
}
body := rec.Body.String()
if !strings.Contains(body, "MCR Login") {
t.Error("login page does not contain 'MCR Login'")
if !strings.Contains(body, "Metacircular Container Registry") {
t.Error("login page does not contain 'Metacircular Container Registry'")
}
if !strings.Contains(body, "_csrf") {
t.Error("login page does not contain CSRF token field")