Requirement
What needs to be done
Build a center aligned form with these rows:
- Row 1: First Name, Middle Name, Last Name
- Row 2: Mobile, Email
- Row 3: Address
- Row 4: Aadhar Number, PAN Number
- Row 5: Age, Height, Weight, BMI (BMI is calculated from Height and Weight)
On Show Data, move to a second screen and show all the entered data there.
Development hint: Use one Structure type variable to hold every field on the form. To pass it to the second screen, save the structure as a JSON string in a Client Variable. On the second screen, read that Client Variable, convert the JSON string back into a Structure object, and display it. Do not use loose variables per field.
Back to form
Submitted Data