Tested tool guide
Tested browser tools
Checked August 16, 2026
What Stepper & Wizard Designer does, with a checked example
A stepper turns a long form into a visible sequence: numbered circles on a track that say where the user is and how much is left. This tool builds that component from a plain step list. You name each step, add the inputs and validation rules it needs, and the designer renders the progress track, the complete/current/upcoming states, and the Back and Next controls. The surprise for most people is how much behavior is derived: nothing typed on later steps matters until the current step's rules pass, and the progress fill is simply completed steps divided by total steps.
Worked example
A concrete input and expected output from the current implementation.
Input
Steps: 'Contact details', 'Payment', 'Review'. Step 1 has an email input with a rule that it must match a basic email format.
->
Expected output
Three numbered circles joined by a track. Step 1 starts current with Next disabled while the email is empty or malformed; a valid address such as ada@example.com enables Next. Advancing marks step 1 complete with a checkmark and fills the track to one third. Step 2 gates the same way, and completing it brings the fill to two thirds (67%).
The fill is completed steps over total steps, so 1 of 3 gives one third and 2 of 3 gives two thirds. The Next button is gated by the current step's rules, which is why nothing advances until the email validates.