Pipeline Explorer
Click a step
Client UI
Auth (RBAC)
CRUD
Audit Log
AWS DB
API Layer
Client UI: HTML + JavaScript screens for workflow + validation.
The embedded demo shows the UX. In production, the UI reads and writes data through secure REST endpoints.
// Client (concept) — fetch patient list
const res = await fetch(`${API_BASE}/patients`, {
headers: { "Authorization": `Bearer ${token}` }
});
const data = await res.json();
renderPatients(data.items);