<!doctype html>
<html lang="zh-CN">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width,initial-scale=1">
<title>需要登录</title>
<style>
body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    display: flex;
    min-height: 100vh;
    margin: 0;
    align-items: center;
    justify-content: center;
    background: #0f1117;
    color: #e5e7eb;
}
.card {
    padding: 32px;
    text-align: center;
}
.btn {
    display: inline-block;
    margin-top: 16px;
    padding: 11px 29px;
    background: #fd4b2d;
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
}
</style>
</head>
<body>
<div class="card">
<h1>需要登录才能访问</h1>
<p>请通过 SSO 登录后继续。</p>
<a class="btn" href="/outpost.goauthentik.io/start?rd=https://search.ur.edu.kg/sitemap.xml">登录</a>
</div>
</body>
</html>