For planning What is the best way to visually represent a typical registration flow where a user registers on a registration page, there is then a confirmation page followed by validation email and welcome email, etc?
|
|
Flowchart is the most intuitive way to visualize a process. It is common solution any step-by-step instructions. It also allows to highlight important details: main sequence (path), final steps, etc.
By the way, this is a standard approach. Unified Modeling Language defines several diagram types, including Activity diagram:
Some useful guidelines:
|
|||
|
|
|
It depends on the goals of the diagram. For example:
|
|||
|
|
|
It's hard to put a label on what that diagram is called but you are essentially looking to visualize the flow. This can be called a 'flowchart', 'user flow', 'UI flow', or a ux 'use case' (different from a programmers 'use case'). A good example of a flowchart can be found here: https://www.lucidchart.com/documents/edit/4543-dcc8-5123936c-8c53-10720a005798#?demo=on And a good article about a quicker way to sketch this out can be found here: http://37signals.com/svn/posts/1926-a-shorthand-for-designing-ui-flows I don't think it really matters what diagram you use, what is important is that you can visualize what needs to be done and get everyone on the same page. I personally prefer a flowchart because it has well defined symbols that create a standardized language to convey the necessary steps for designers, project leaders, programmers, and the likes. Either way, for registration, I think the conditional is an important aspect for showing what decisions the user will have to make and where that will lead them. Also remember that some conditionals will be decided by logic not the user. |
|||
|
|


