A confirmation screen that lists a user’s answers as read-only text and offers a single “Go back” button turns a one-character fix into a chore. When the page flags an invalid email, the user doesn’t want to return to the whole form — they want to change that one field. Forcing them to re-navigate everything they’d already completed adds friction at the worst possible moment: the step right before submit, when they thought they were done.
The fix is to put an edit control next to every field on the summary. A small “Edit” link beside the name, the email, and the address lets the user act on the exact item that’s wrong. Pair it with an inline message that shows what a valid answer looks like — “Use a valid email like [email protected]” — and the correction happens in place, without unwinding the rest of the form.
Start by catching what you can earlier, so fewer errors reach this screen at all: validate fields on blur instead of waiting for submit. For the errors that do surface here, write a message that names the field and shows a valid example right where the edit link sits. On a multi-step flow, the edit link should jump straight to the relevant step and focus the field — never drop the user back at the top.
- Give every reviewed field its own edit link — the user fixes the exact item, not the whole form.
- Edit in place when you can — reveal the field inline so nothing else on the summary moves.
- Pair the link with a clear message that names the problem and shows a valid example.
- Focus the field on arrival so a jump-to-step link lands the user ready to type.
- Protect the last step — the confirmation screen is the final gate before submit; keep corrections effortless.