The form does not enforce the required attribute for all fields, allowing users to submit the form without filling in all required fields.
All form fields should be marked as required, ensuring that users cannot submit the form without providing information for each field.
Users can submit the form without filling in all required fields.
The email field in the form does not validate the input to ensure it matches the email format.
The email field should validate user input to ensure it matches the standard email format (e.g., "[email protected]").
Users can input any text into the email field, even if it does not resemble a valid email address.
The phone number field in the form does not restrict input to numeric characters only.
The phone number field should accept only numeric characters, ensuring that users cannot input non-numeric characters such as letters or symbols.
Users can input non-numeric characters into the phone number field.
The form does not save the submitted data to local storage.
Upon submitting the form, the entered data should be saved to local storage, allowing it to persist even if the page is refreshed or closed.
The submitted data is not saved to local storage.
Clicking the submit button does not trigger the Toast.
Clicking the submit button should initiate Toast.
The submit button does not trigger Toast.