From 2ce9fc5450e654d005eaa68a4f16f0ade791e6ff Mon Sep 17 00:00:00 2001 From: Jun Date: Sun, 2 Mar 2025 10:20:36 +0800 Subject: [PATCH] Update README.md Fixed some potential misspellings/errors. --- 7-bank-project/2-forms/README.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/7-bank-project/2-forms/README.md b/7-bank-project/2-forms/README.md index 9213a486..b667cc26 100644 --- a/7-bank-project/2-forms/README.md +++ b/7-bank-project/2-forms/README.md @@ -6,7 +6,7 @@ ### Introduction -In almost all modern web apps, you can create an account to have your own private space. As multiple users can access a web app at the same time, you need a mechanism to store each user personal data separately and select which information to display information. We won't cover how to manage [user identity securely](https://en.wikipedia.org/wiki/Authentication) as it's an extensive topic on its own, but we'll make sure each user is able to create one (or more) bank account on our app. +In almost all modern web apps, you can create an account to have your own private space. As multiple users can access a web app at the same time, you need a mechanism to store each user's personal data separately and select which information to display information. We won't cover how to manage [user identity securely](https://en.wikipedia.org/wiki/Authentication) as it's an extensive topic on its own, but we'll make sure each user is able to create one (or more) bank account on our app. In this part we'll use HTML forms to add login and registration to our web app. We'll see how to send the data to a server API programmatically, and ultimately how to define basic validation rules for user inputs. @@ -34,7 +34,7 @@ curl http://localhost:5000/api The `
` element encapsulates a section of an HTML document where the user can input and submit data with interactive controls. There are all sorts of user interface (UI) controls that can be used within a form, the most common one being the `` and the `