From 9326bc14c383fedfeeb3261156fa3bbe5c548a77 Mon Sep 17 00:00:00 2001 From: Perrila Tamang Date: Wed, 9 Sep 2026 23:02:53 +0100 Subject: [PATCH 1/7] First commit of Complete Form --- Form-Controls/index.html | 56 +++++++++++++++++++++++++++++++++++----- 1 file changed, 50 insertions(+), 6 deletions(-) diff --git a/Form-Controls/index.html b/Form-Controls/index.html index 74b591ffc..919bb1ee1 100644 --- a/Form-Controls/index.html +++ b/Form-Controls/index.html @@ -12,16 +12,60 @@

Product Pick

-
- - + +
+ + +
+ + +
+ + +
+ T-shirt Color +
+ + +
+
+ + +
+ +
+ + +
+ +
+ + + +
+ +
+ + + +
+
+
From d6ba3b792d8bfa553ce46b2f091805c8ae0295c2 Mon Sep 17 00:00:00 2001 From: Perrila Tamang Date: Wed, 9 Sep 2026 23:35:18 +0100 Subject: [PATCH 2/7] Fix Lighthouse issues and HTML validation errors --- Form-Controls/index.html | 99 ++++++++++++++++++++++++++++------------ 1 file changed, 69 insertions(+), 30 deletions(-) diff --git a/Form-Controls/index.html b/Form-Controls/index.html index 919bb1ee1..13bcd8296 100644 --- a/Form-Controls/index.html +++ b/Form-Controls/index.html @@ -6,66 +6,105 @@ My form exercise + +

Product Pick

+
- - + +
- -
- - +
+ +
- T-shirt Color -
- - + + T-shirt Color + +
+ +
-
+ +
- +
-
+
- +
-
- - + - - +
- - - -
- + + +
-
+
-

By Perrila Tamang

- + \ No newline at end of file From 8d1021ca388a14faf206c163da7b6fdbfedcf4ad Mon Sep 17 00:00:00 2001 From: Perrila Tamang Date: Wed, 9 Sep 2026 23:37:31 +0100 Subject: [PATCH 3/7] results Page --- Form-Controls/results.html | 0 1 file changed, 0 insertions(+), 0 deletions(-) create mode 100644 Form-Controls/results.html diff --git a/Form-Controls/results.html b/Form-Controls/results.html new file mode 100644 index 000000000..e69de29bb From fb75252a248f1e0072c4214104c32c953a0b8608 Mon Sep 17 00:00:00 2001 From: Perrila Tamang Date: Mon, 14 Sep 2026 12:47:16 +0100 Subject: [PATCH 4/7] Autocomplete attribute --- Form-Controls/index.html | 1 + 1 file changed, 1 insertion(+) diff --git a/Form-Controls/index.html b/Form-Controls/index.html index 13bcd8296..f7481f5d5 100644 --- a/Form-Controls/index.html +++ b/Form-Controls/index.html @@ -33,6 +33,7 @@

Product Pick

name="Name" id="name" placeholder="Username" + autocomplete="name" pattern=".*\S.*\S.*" title="Please enter at least two non-space characters." required From 06185f9c8ae32da2ce2fde2cfcc7fd204cfb2433 Mon Sep 17 00:00:00 2001 From: Perrila Tamang Date: Mon, 14 Sep 2026 12:54:44 +0100 Subject: [PATCH 5/7] Moved css to a separate folder --- Form-Controls/index.html | 11 +---------- 1 file changed, 1 insertion(+), 10 deletions(-) diff --git a/Form-Controls/index.html b/Form-Controls/index.html index f7481f5d5..db8eb4805 100644 --- a/Form-Controls/index.html +++ b/Form-Controls/index.html @@ -6,17 +6,8 @@ My form exercise - From 3969597dd44dee6c90d050827954b411ada03cfe Mon Sep 17 00:00:00 2001 From: Perrila Tamang Date: Mon, 14 Sep 2026 13:26:22 +0100 Subject: [PATCH 6/7] Fixed review changes --- Form-Controls/index.html | 36 ++++++++++++++++++++---------------- Form-Controls/style.css | 11 +++++++++++ 2 files changed, 31 insertions(+), 16 deletions(-) create mode 100644 Form-Controls/style.css diff --git a/Form-Controls/index.html b/Form-Controls/index.html index db8eb4805..94699d75b 100644 --- a/Form-Controls/index.html +++ b/Form-Controls/index.html @@ -16,12 +16,12 @@

Product Pick

-
+
Product Pick
- T-shirt Color + + + T-shirt Color +
@@ -75,18 +78,19 @@

Product Pick

/>
-
- - -
+
+ + +
+
diff --git a/Form-Controls/style.css b/Form-Controls/style.css new file mode 100644 index 000000000..9b9b0bbfb --- /dev/null +++ b/Form-Controls/style.css @@ -0,0 +1,11 @@ + + button, + select { + min-height: 44px; + padding: 8px 12px; + } + + button { + margin-right: 8px; + } + \ No newline at end of file From 79d3059f1da6664f437afcde8be47cb35f7aafb4 Mon Sep 17 00:00:00 2001 From: Perrila Tamang Date: Mon, 14 Sep 2026 13:28:21 +0100 Subject: [PATCH 7/7] ALl changes --- Form-Controls/results.html | 0 1 file changed, 0 insertions(+), 0 deletions(-) delete mode 100644 Form-Controls/results.html diff --git a/Form-Controls/results.html b/Form-Controls/results.html deleted file mode 100644 index e69de29bb..000000000