SmartHealth Clinic — EHR Prototype

A front-end prototype that demonstrates secure login (RBAC), patient records, appointments, labs, secure messages, and an audit trail. The architecture below shows how this UI connects to a real backend (AWS database + REST API).

HTML
DevelopmentHTML + JavaScript UI
AWS
AWSDatabase + services
Schema
SchemaPatients, Appointments, Labs, Audit
API
API ConnectionREST endpoints (JSON)

Pipeline Explorer

Click a step

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);

Interactive Demo (HTML/JS)

Embedded

Backend (AWS + REST API)

Not connected
GET In Progress...API has not been set yet
GET In Progress...API has not been set yet
GET In Progress...API has not been set yet