Hi there, @bob.thebuilder… I had never watched that video, so I checked it out, and it is a bit confusing because they aren’t populating the Name
field during the sign up process but a value magically appears in that field on the data tab.
Maybe they show how they are populating that field in a different lesson, but if they don’t, you can easily give a user the ability to enter their name by adding an input element to the sign up form where the user can type their name. Then, in the workflow where you sign the user up, set the Name
field to be the value of the input element where the user entered their name.
You could also go another route and extract the alias (which in this case, happens to be the user’s name) from the email address and populate the Name
field with the alias as part of the sign up workflow.
Hope this helps.
Best…
Mike