Files
iAOP/web/auth/users.html
T

91 lines
4.3 KiB
HTML

<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>iAOP 用户/角色管理</title>
<style>
/* iAOP 用户/角色管理页(issue #134 / PRD 8.2):admin 专属 */
:root { --bg:#0b1220; --surface:#13203a; --fg:#e6edf6; --muted:#8aa0bd;
--accent:#18d3c8; --line:rgba(255,255,255,.06); }
* { box-sizing:border-box; }
body { margin:0; font-family:"Microsoft YaHei",sans-serif; background:var(--bg); color:var(--fg); }
#topbar { display:flex; align-items:center; justify-content:space-between;
padding:10px 16px; background:var(--surface); border-bottom:1px solid var(--line); }
h1 { font-size:18px; color:var(--accent); margin:0; }
h1 .sub { font-size:12px; color:var(--muted); font-weight:400; }
#topbar-right { display:flex; gap:10px; align-items:center; font-size:13px; color:var(--muted); }
main { padding:16px; display:grid; grid-template-columns:1fr 1fr; gap:12px; }
.panel { background:var(--surface); border:1px solid var(--line); border-radius:8px;
padding:14px 16px; }
.panel h2 { font-size:14px; color:var(--accent); margin:0 0 10px; }
table { width:100%; border-collapse:collapse; font-size:13px; }
th, td { padding:7px 8px; border-bottom:1px solid var(--line); text-align:left; }
th { color:var(--muted); font-weight:400; }
select, input { padding:6px 8px; border-radius:6px; border:1px solid var(--line);
background:var(--bg); color:var(--fg); font-size:13px; }
button { padding:5px 12px; border:none; border-radius:5px; cursor:pointer;
background:#1e293b; color:var(--fg); font-size:12px; }
button.primary { background:var(--accent); color:#04202a; }
button.danger { background:#7a1f1a; color:#ffb4ad; }
.row { display:flex; gap:8px; margin:10px 0; flex-wrap:wrap; align-items:center; }
.hint { font-size:11px; color:#64748b; }
.role-readonly { color:#8aa0bd; } .role-engineer { color:#38bdf8; }
.role-admin { color:var(--accent); }
.disabled-user { opacity:.45; }
#audit-list { max-height:420px; overflow-y:auto; font-size:12px; font-family:Consolas,monospace; }
#audit-list div { padding:3px 0; border-bottom:1px solid var(--line); color:var(--muted); }
@media (max-width:1000px) { main { grid-template-columns:1fr; } }
</style>
</head>
<body>
<header id="topbar">
<h1>用户/角色管理 <span class="sub">RBAC 三级:readonly / engineer / admin · PRD 8.2</span></h1>
<div id="topbar-right">
<span id="who"></span>
<a href="../studio/index.html" style="color:var(--accent);font-size:13px">返回配置台</a>
<button id="logout-btn">退出登录</button>
</div>
</header>
<main>
<div class="panel">
<h2>用户列表</h2>
<div class="row">
<input id="new-username" placeholder="用户名">
<input id="new-password" type="password" placeholder="初始密码(≥6 位)">
<select id="new-role">
<option value="readonly">Viewer(只读)</option>
<option value="engineer">Editor(配置)</option>
<option value="admin">Publisher(发布)</option>
</select>
<button id="btn-add" class="primary">新增用户</button>
</div>
<div class="hint" id="form-err"></div>
<table>
<thead><tr><th>用户名</th><th>角色</th><th>状态</th><th>创建时间</th><th>操作</th></tr></thead>
<tbody id="user-tbody"></tbody>
</table>
</div>
<div>
<div class="panel">
<h2>OIDC SSO 配置点(预留,PRD 8.2 双轨)</h2>
<div class="row"><input id="oidc-issuer" placeholder="issuer,如 https://iam.example.com" style="flex:2"></div>
<div class="row">
<input id="oidc-client" placeholder="client_id" style="flex:1">
<input id="oidc-redirect" placeholder="回调 redirect_uri(可空)" style="flex:1">
<button id="btn-oidc" class="primary">保存</button>
</div>
<div class="hint">配置后登录页出现「企业 SSO 登录」入口(标准 OIDC 授权码流程);
未配置走本地账号。令牌换会话的后端端点待 IAM 就绪后对接(见 README)。</div>
</div>
<div class="panel" style="margin-top:12px">
<h2>审计日志(写操作落日志,最近 500 条)</h2>
<div id="audit-list"></div>
</div>
</div>
</main>
<script src="auth.js"></script>
<script src="users.js"></script>
</body>
</html>