Verification Code Review Patterns
Backup Method
A static backup method notice shows Recovery code, 8 codes, Single use only, and Available option status.
Program
Backup method notices should read back the option, remaining count, use note, and status without revealing or consuming recovery codes.
backup_method_notice.html
Visuals: captured from real browser rendering
<section class="backup-method" aria-labelledby="backup-method-title"><h2 id="backup-method-title">Backup method notice</h2><dl>
<div><dt>Backup method</dt><dd>Recovery code</dd></div>
<div><dt>Codes remaining</dt><dd>8 codes</dd></div>
<div><dt>Use note</dt><dd>Single use only</dd></div>
<div><dt>Status</dt><dd><span class="badge">Available option</span></dd></div></dl>
<p class="note">Static backup method notice only; no recovery-code service, auth service, token reveal, account mutation, storage, route, API, network, timer, script, or live recovery runs.</p></section>
<style>
.backup-method { display: grid; gap: 10px; max-width: 38rem; border: 1px solid #64748b; padding: 12px; }
.backup-method dl { display: grid; gap: 8px; margin: 0; }
.backup-method dl div { display: grid; grid-template-columns: 8rem 1fr; gap: 8px; }
.backup-method dt { color: #475569; }
.backup-method dd, .note { margin: 0; }
.badge { border-radius: 999px; background: #dcfce7; padding: 2px 8px; }
.note { color: #475569; }
</style>
Label the backup method notice.

The section is labelled by its visible heading. Show the backup method.

The backup method is exact pinned data. Show codes remaining.

The remaining count is exact pinned data. Show the use note.

The use note is exact pinned data. Render the available status.

The status badge says this is an available option. Check backup honesty.

Backup method, remaining count, use note, status, and no live recovery.
backup readback
The section heading names the backup-method surface.
backup rows
Backup method, Codes remaining, Use note, and Status values are exact pinned data.
no live recovery
The lesson should not imply recovery-code services, auth services, token reveals, account mutations, storage, routes, APIs, networks, timers, scripts, or live recovery.