From 754a03621572bd4076024a184754c089784dcdc2 Mon Sep 17 00:00:00 2001 From: abduhasen Date: Sat, 23 May 2026 18:54:59 +0100 Subject: [PATCH 1/3] wrote form control using html created input box for name and email, select for size choose,radio also for colour choose, used a lot
for spacing. --- Form-Controls/index.html | 82 ++++++++++++++++++++++++++++++++++++---- 1 file changed, 75 insertions(+), 7 deletions(-) diff --git a/Form-Controls/index.html b/Form-Controls/index.html index 74b591ffc..1c8beeb23 100644 --- a/Form-Controls/index.html +++ b/Form-Controls/index.html @@ -1,4 +1,4 @@ - + @@ -13,15 +13,83 @@

Product Pick

- - +
+

Personal Information

+
    +
  • + +
    +
    + +
    +
    +
  • + +
  • +
    + +
    +
  • +
+
+
+

T-Shirt Colour and Size

+

T-shirt colour

+
    +
  1. + +

    +
  2. +
  3. + +

    +
  4. + +
  5. + +

    +
  6. +
+ + +
From c9830a3c6884855ece48946b8ccea9f947fba76c Mon Sep 17 00:00:00 2001 From: abduhasen Date: Mon, 25 May 2026 10:14:11 +0100 Subject: [PATCH 2/3] fixing the meta content for the form and also name input pattern boundaries --- Form-Controls/index.html | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Form-Controls/index.html b/Form-Controls/index.html index 1c8beeb23..b68720efb 100644 --- a/Form-Controls/index.html +++ b/Form-Controls/index.html @@ -4,7 +4,7 @@ My form exercise - + @@ -24,7 +24,7 @@

Personal Information

id="fname" maxlength="10" minlength="2" - pattern="[A-Za-z]+" + pattern="^[\p{L}][\p{L}\s'-]*$" required />

@@ -35,7 +35,7 @@

Personal Information

id="lname" maxlength="10" minlength="2" - pattern="[A-Za-z]+" + pattern="^[\p{L}][\p{L}\s'-]*$" required />

From 16c7904edbc4fa9cba01f88462e161ed253c5174 Mon Sep 17 00:00:00 2001 From: abduhasen Date: Mon, 25 May 2026 16:56:17 +0100 Subject: [PATCH 3/3] fixing pattern attribute for the names input --- Form-Controls/index.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Form-Controls/index.html b/Form-Controls/index.html index b68720efb..f1c0bb98e 100644 --- a/Form-Controls/index.html +++ b/Form-Controls/index.html @@ -24,7 +24,7 @@

Personal Information

id="fname" maxlength="10" minlength="2" - pattern="^[\p{L}][\p{L}\s'-]*$" + pattern="[A-Za-zÀ-ÖØ-öø-ÿ]+" required />

@@ -35,7 +35,7 @@

Personal Information

id="lname" maxlength="10" minlength="2" - pattern="^[\p{L}][\p{L}\s'-]*$" + pattern="[A-Za-zÀ-ÖØ-öø-ÿ]+" required />