Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
145 changes: 124 additions & 21 deletions Form-Controls/index.html
Original file line number Diff line number Diff line change
@@ -1,27 +1,130 @@
<!DOCTYPE html>
<html lang="en">

<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>My form exercise</title>
<meta name="description" content="" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
</head>
<body>
<header>
<h1>Product Pick</h1>
</header>
<main>
<form>
<!-- write your html here-->
<!--
try writing out the requirements first as comments
this will also help you fill in your PR message later-->
</form>
</main>
<footer>
<!-- change to your name-->
<p>By HOMEWORK SOLUTION</p>
</footer>
</body>
</html>
<!--
FORM REQUIREMENTS:
1. Collect customer's full name
- Must be at least 2 characters long
- Cannot be empty

2. Collect customer's email
- Must be a valid email format
- Field is required

3. Choose T-shirt colour
- Must select ONE option only
- Only 3 allowed options provided
- Cannot enter custom colours

4. Choose T-shirt size
- Must select ONE option
- Options: XS, S, M, L, XL, XXL
- Field is required

5. All fields required before submission

6. No JavaScript allowed... only HTML form validation
-->
<header>
<h1>T-Shirt Order Form</h1>
</header>

<main>
<form>

<!-- Name -->
<label for="name">Full Name</label>
<input
type="text"
id="name"
name="name"
placeholder="Enter your full name"
required
minlength="2"
pattern=".*\S.*\S.*"
>

<!-- Email -->
<label for="email">Email Address</label>
<input
type="email"
id="email"
name="email"
placeholder="you@example.com"
required
>

<!-- Colour Selection -->
<fieldset>
<legend>Choose a colour</legend>

<label>
<input
type="radio"
name="colour"
value="pink"
required
>
Pink
</label>

<label>
<input
type="radio"
name="colour"
value="black"
>
Black
</label>

<label>
<input
type="radio"
name="colour"
value="blue"
>
Blue
</label>
Comment thread
Jay99-prog marked this conversation as resolved.
</fieldset>

<!-- Size Selection -->
<fieldset>
<legend>Select a size</legend>

<label for="size">Size</label>

<select
id="size"
name="size"
required
>
<option value="">-- Select Size --</option>
<option value="XS">XS</option>
<option value="S">S</option>
<option value="M">M</option>
<option value="L">L</option>
<option value="XL">XL</option>
<option value="XXL">XXL</option>
</select>
</fieldset>

<!-- Submit Button -->
<button type="submit">Submit Order</button>

</form>
</main>

<footer>
<p>By Juanita Nwachukwu</p>
</footer>

</body>
</html>
Loading