Creating the MyAccount form
Now, let's build the forms that will deploy to various screens. First comes MyAccount
.
Add the form panel to the temporary panel you built. Don't install the form directly onto the Screen
panel—there is a reason to this. You will make relationships between the list and the details, so there are times when there are numerous panels existing inside the screen.
It just so happens that MyAccount
only needs one screen. If the number of methods increases, there is a chance that you will need multiple panels. You might need a panel to run the input verification. But it's difficult to say for sure at this point. So, it is necessary to make the screen layout into a card layout which will make it easier to handle multiple screens.
First, let's specify the screen layout to be a card layout. In the MyAccount.js
script at the bottom of the view
directory you made before, create a MyAccount
directory and move into it. The hierarchy of the directory will change, so let's modify...