Updating the Client: The Login Screen
Learn how to add a password field and a register account checkbox.
We'll cover the following...
We'll cover the following...
Necessary changes
The updates to the client are fairly extensive since every interaction with the API must be correctly modified, and we need to think through how to handle a range of failure cases. There is good news, though, which is that all of the interactions with the server occur at the top level within the App.js
file. Here’s a list of the changes we’ll need to make:
-
Update the login screen by adding a password field and a “register account” check-box.
-
Update the start ...