From 8ce5a1add7d2b0aadc8cf1adbec40a8d57675dfb Mon Sep 17 00:00:00 2001 From: Tobias Date: Wed, 20 May 2026 18:49:45 +0100 Subject: [PATCH 01/15] creating form Fist name inpute element --- Form-Controls/index.html | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/Form-Controls/index.html b/Form-Controls/index.html index 74b591ffc..c8565f857 100644 --- a/Form-Controls/index.html +++ b/Form-Controls/index.html @@ -13,7 +13,14 @@

Product Pick

- + +
+ + + Must be at least 2 characters long +
+ From 6f1279a1a9c016354d9a968d563daf8710ea478d Mon Sep 17 00:00:00 2001 From: Tobias Date: Wed, 20 May 2026 18:53:06 +0100 Subject: [PATCH 02/15] created form last name inpute element --- Form-Controls/index.html | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/Form-Controls/index.html b/Form-Controls/index.html index c8565f857..1630b72cd 100644 --- a/Form-Controls/index.html +++ b/Form-Controls/index.html @@ -20,6 +20,14 @@

Product Pick

arial-describedby="fnameHelp" Must be at least 2 characters long + +
+ + + Must be at least 2 characters long +
+ +
+ + + Must be a valid email address +
-
+
Must be at least 2 characters long -
+ -
+
Must be at least 2 characters long -
+ -
+
Must be a valid email address -
+ +
+ + + Must be at least 8 characters long and include at least one uppercase letter, one lowercase letter, one number, and one special character +
+ +
+ + +
+ +
+ + +
+ +
+ +
- - From 7b3e78e5b03a5c3bd65ee41b7b1c7123b33d5e68 Mon Sep 17 00:00:00 2001 From: Tobias Date: Wed, 20 May 2026 20:23:06 +0100 Subject: [PATCH 07/15] writing the requirements and the foot note update --- Form-Controls/index.html | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/Form-Controls/index.html b/Form-Controls/index.html index faf42536a..47ec5c0e1 100644 --- a/Form-Controls/index.html +++ b/Form-Controls/index.html @@ -68,15 +68,19 @@

Product Pick

- -
From 790019ba487dab0888d73b9ba4f49723be6d48cf Mon Sep 17 00:00:00 2001 From: Tobias Date: Wed, 20 May 2026 22:01:21 +0100 Subject: [PATCH 08/15] fixing the closing '' tag at line 65 and changing arial-describedby to aria-describedby in the fistname, last name and email, password input element --- Form-Controls/index.html | 43 +++++++++++++++++++++------------------- 1 file changed, 23 insertions(+), 20 deletions(-) diff --git a/Form-Controls/index.html b/Form-Controls/index.html index 47ec5c0e1..f52cd87ee 100644 --- a/Form-Controls/index.html +++ b/Form-Controls/index.html @@ -14,35 +14,35 @@

Product Pick

-
+
+ aria-describedby="fnameHelp" Must be at least 2 characters long -
+ -
+
+ aria-describedby="lnameHelp" Must be at least 2 characters long -
+ -
+
+ aria-describedby="emailHelp" Must be a valid email address -
+ -
+
+ aria-describedby="passwordHelp" Must be at least 8 characters long and include at least one uppercase letter, one lowercase letter, one number, and one special character -
+ -
+
-
+ -
+
-
+ + + -
- -
+
+ + + aria-describedby="lnameHelp"> Must be at least 2 characters long
+ aria-describedby="emailHelp"> Must be a valid email address
+ aria-describedby="passwordHelp"> Must be at least 8 characters long and include at least one uppercase letter, one lowercase letter, one number, and one special character
From ec3f16de2c2df9fbaf5a3544b04b2bae24438a2b Mon Sep 17 00:00:00 2001 From: Tobias Date: Wed, 20 May 2026 22:21:12 +0100 Subject: [PATCH 10/15] fix the submitt syntax with the right tags --- Form-Controls/index.html | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/Form-Controls/index.html b/Form-Controls/index.html index 9dcdcdcc4..0d64f45f4 100644 --- a/Form-Controls/index.html +++ b/Form-Controls/index.html @@ -66,11 +66,9 @@

Product Pick

-
- - From 919fac933ad2cae35f14fb27c214ca378e3312f8 Mon Sep 17 00:00:00 2001 From: Tobias Date: Wed, 20 May 2026 22:52:35 +0100 Subject: [PATCH 12/15] adding CSS internal style at the head section for the HTml elements --- Form-Controls/index.html | 53 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 53 insertions(+) diff --git a/Form-Controls/index.html b/Form-Controls/index.html index 77e555efe..443b70a1f 100644 --- a/Form-Controls/index.html +++ b/Form-Controls/index.html @@ -6,6 +6,59 @@ My form exercise +
From 3a0d7f90aea49332af0ff8c2c083f335f24d6bec Mon Sep 17 00:00:00 2001 From: Tobias Date: Wed, 27 May 2026 21:45:48 +0100 Subject: [PATCH 13/15] formatted the lines of code for readability and consistency --- Form-Controls/index.html | 17 ++++++++++++----- 1 file changed, 12 insertions(+), 5 deletions(-) diff --git a/Form-Controls/index.html b/Form-Controls/index.html index 443b70a1f..a5af4327b 100644 --- a/Form-Controls/index.html +++ b/Form-Controls/index.html @@ -69,30 +69,37 @@

Product Pick

- Must be at least 2 characters long
- Must be at least 2 characters long
- Must be a valid email address
- - Must be at least 8 characters long and include at least one uppercase letter, one lowercase letter, one number, and one special character + + Must be at least 8 characters long and include at least one uppercase letter, + one lowercase letter, + one number, and one special character
From f9815d2fb242060f9908fcb9fe56ca2aed5f9173 Mon Sep 17 00:00:00 2001 From: Tobias Date: Wed, 27 May 2026 21:48:50 +0100 Subject: [PATCH 14/15] close the speaces between the Html attributes and it's values --- Form-Controls/index.html | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/Form-Controls/index.html b/Form-Controls/index.html index a5af4327b..0a95c16cc 100644 --- a/Form-Controls/index.html +++ b/Form-Controls/index.html @@ -68,7 +68,7 @@

Product Pick

- + @@ -76,7 +76,7 @@

Product Pick

- + @@ -84,7 +84,7 @@

Product Pick

- + @@ -92,7 +92,7 @@

Product Pick

- + @@ -114,7 +114,7 @@

Product Pick

- +