A static session impact notice shows 2 devices, Review recommended, Stays signed in, and Not changed status.

Program

Session impact notices should explain what may happen after a password change without changing sessions.

session_after_change_notice.html
Visuals: captured from real browser rendering
<section class="session-notice" aria-labelledby="session-notice-title"><h2 id="session-notice-title">Session after change notice</h2><dl>
  <div><dt>Signed-in devices</dt><dd>2 devices</dd></div>
  <div><dt>Other sessions</dt><dd>Review recommended</dd></div><div><dt>Current session</dt><dd>Stays signed in</dd></div>
  <div><dt>Status</dt><dd><span class="badge">Not changed</span></dd></div></dl>
  <p class="check">Learner check: session impact is visible without signing anything out.</p>
  <p class="note">Static session notice only; no session mutation, auth service, device lookup, token rotation, notification send, storage, route, API, network, script, form submit, analytics, timers, or live sign-outs run.</p></section>
<style>
  .session-notice { display: grid; gap: 10px; max-width: 38rem; border: 1px solid #64748b; padding: 12px; }
  .session-notice dl { display: grid; gap: 8px; margin: 0; }
  .session-notice dl div { display: grid; grid-template-columns: 8rem 1fr; gap: 8px; }
  .session-notice dt { color: #475569; }
  .session-notice dd, .check, .note { margin: 0; }
  .badge { border-radius: 999px; background: #e2e8f0; padding: 2px 8px; }
  .note { color: #475569; }
</style>
  1. Label the session notice.

    The section is labelled by its visible heading.
    The section is labelled by its visible heading.
  2. Show signed-in devices.

    The signed-in device count is exact pinned data.
    The signed-in device count is exact pinned data.
  3. Show other and current sessions.

    The other-session and current-session rows are exact pinned data.
    The other-session and current-session rows are exact pinned data.
  4. Render unchanged status.

    The status badge says sessions are not changed.
    The status badge says sessions are not changed.
  5. Check session readback.

    The check says session impact is visible without signing anything out.
    The check says session impact is visible without signing anything out.
  6. Check session honesty.

    Device count, session impact, status, and no live sign-outs.
    Device count, session impact, status, and no live sign-outs.
step flow step(1) labels the source, step(2) shows signed-in devices, step(3) shows other and current sessions, step(4) shows not-changed status, step(5) checks the session impact readback, and step(6) checks the honesty note.
session readback The section heading names the session after change notice surface.
session rows Signed-in devices, Other sessions, Current session, and Status values are exact pinned data.
no session mutation The lesson should not imply session mutation, auth services, device lookups, token rotation, notification sends, storage, routes, APIs, networks, scripts, form submits, analytics, timers, or live sign-outs.