Member Role Review Patterns
Access Notice
A static access change notice shows Project Phoenix, After save, Admin can change later, and Not applied.
Program
Access change notices should explain scope, effective timing, and revert context without applying account or access-control changes.
access_change_notice.html
Visuals: captured from real browser rendering
<section class="access-notice" aria-labelledby="access-notice-title">
<h2 id="access-notice-title">Access change notice</h2>
<dl>
<div><dt>Scope</dt><dd>Project Phoenix</dd></div>
<div><dt>Effective</dt><dd>After save</dd></div>
<div><dt>Revert note</dt><dd>Admin can change later</dd></div>
<div><dt>Status</dt><dd><span class="badge">Not applied</span></dd></div>
</dl>
<p class="note">Static access change notice only; no account service, access-control service, database, transaction, save, route, API, network, timer, script, or live application runs.</p>
</section>
<style>
.access-notice { display: grid; gap: 10px; max-width: 38rem; border: 1px solid #b45309; padding: 12px; background: #fffbeb; }
.access-notice dl { display: grid; gap: 8px; margin: 0; }
.access-notice dl div { display: grid; grid-template-columns: 8rem 1fr; gap: 8px; }
.access-notice dt { color: #475569; }
.access-notice dd, .note { margin: 0; }
.badge { border-radius: 999px; background: #fef3c7; padding: 2px 8px; }
.note { color: #475569; }
</style>
Label the access change notice.

The section is labelled by its visible heading. Show the scope row.

The scope is exact pinned data. Show when it becomes effective.

The effective timing is exact pinned data. Show the revert note.

The revert note is exact pinned data. Show the not-applied status.

The status is visible as a static badge. Check access notice honesty.

Scope, effective timing, revert note, status, and no access operation.
notice readback
The section heading names the access change notice surface.
access rows
Scope, Effective, Revert note, and Status values are exact pinned data.
no access operation
The lesson should not imply account services, access-control services, databases, transactions, saves, routes, APIs, timers, scripts, or live application.