Complete the code to identify the first step in a sign up workflow.
The first step in a sign up workflow is to [1] the user information.
The sign up process begins by collecting user information such as name, email, and password.
Complete the code to describe the login verification step.
During login, the system must [1] the entered password with the stored password.
Login requires comparing the entered password with the stored one to verify identity.
Fix the error in the description of password storage.
Passwords should never be stored as plain text but should be [1] before saving.
Passwords must be encrypted (hashed) before storage to protect user security.
Fill both blanks to describe the two-factor authentication step.
After password verification, the system sends a [1] code to the user's [2] for extra security.
Two-factor authentication sends a verification code to the user's phone to add security.
Fill all three blanks to complete the description of a password reset workflow.
To reset a password, the user must [1] their email, receive a [2] link, and then [3] a new password.
The user enters their email, clicks the reset link sent, and then sets a new password.
