Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
36 commits
Select commit Hold shift + click to select a range
e6848ca
update readme, clean some files
fgsumer Sep 22, 2025
68b3e47
update PR template
fgsumer Sep 22, 2025
d4402f3
Merge pull request #2 from fgsumer/main
fgsumer Sep 22, 2025
874db37
Added design pallete index.html
EL1VAS Oct 3, 2025
0871233
Added more css index.html
EL1VAS Oct 3, 2025
b264011
Header change index.html
EL1VAS Oct 3, 2025
aa880f9
Added three articles index.html
EL1VAS Oct 3, 2025
4b4919e
Removed css from index.html
EL1VAS Oct 3, 2025
c182488
Add git branch SVG icon to Wireframe folder
EL1VAS Oct 3, 2025
1f95203
Added git brach icon index.html
EL1VAS Oct 3, 2025
e970934
Add Readme, Wireframe, book_open, and git SVG icons to Wireframe folder
EL1VAS Oct 3, 2025
fc67787
Merge branch 'feature/wireframe' of https://github.com/EL1VAS/Module-…
EL1VAS Oct 3, 2025
a4af0ca
Added img in articles index.html
EL1VAS Oct 3, 2025
f7993f2
Merge pull request #1 from EL1VAS/EL1VAS-patch-2
EL1VAS Oct 3, 2025
2f2076b
Changed paper to another color style.css
EL1VAS Oct 3, 2025
430358b
Update style.css
EL1VAS Oct 3, 2025
ec6d80b
Change header style.css
EL1VAS Oct 3, 2025
5c3aedf
Center and change size in text style.css
EL1VAS Oct 3, 2025
c95cf35
Footer changed style.css
EL1VAS Oct 3, 2025
31cb293
Save local changes before pulling
EL1VAS Oct 3, 2025
6a27395
Resolve merge conflict in Wireframe/style.css by updating with Github…
EL1VAS Oct 3, 2025
7a37441
Added the name index.html
EL1VAS Oct 4, 2025
3ad8fdd
Added email index.html
EL1VAS Oct 4, 2025
af447bd
Added blue color choice index.html
EL1VAS Oct 4, 2025
f344ff2
Added green and black to colors index.html
EL1VAS Oct 4, 2025
c7d65fc
Added sizes option index.html
EL1VAS Oct 4, 2025
9e325d8
Added my name index.html
EL1VAS Oct 4, 2025
e6de876
Update index.html
EL1VAS Oct 4, 2025
50c66bf
Added submit button index.html
EL1VAS Oct 4, 2025
aa5b308
Fixed typo legent to legend
EL1VAS Nov 12, 2025
7b09823
Fixed the <div> after the Blue color section to be </div>
EL1VAS Nov 12, 2025
cd0e912
In line 53 "Select option put in <option>
EL1VAS Nov 12, 2025
f845707
Fixed label for="T-shirt size" to be "T-shirt-size" (no spaces)
EL1VAS Nov 12, 2025
e24cdc6
Added value attributes to the options
EL1VAS Nov 12, 2025
aa69130
Fixed identation
EL1VAS Nov 12, 2025
0e20a9f
Fixed the footer
EL1VAS Nov 12, 2025
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
4 changes: 2 additions & 2 deletions .github/pull_request_template.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@

You must title your PR like this:

Region | Cohort | FirstName LastName | Sprint | Assignment Title
Cohort | FirstName LastName | Week | Assignment Title

For example,

London | 25-ITP-May | Carol Owen | Sprint 1 | Alarm Clock
ITP-2025-1 | Carol Owen | Week 1 | Alarm Clock

Fill in the template below - remove any sections that don't apply.

Expand Down
59 changes: 55 additions & 4 deletions Form-Controls/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -14,14 +14,65 @@ <h1>Product Pick</h1>
<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-->
<!-- What is the customer's name? I must collect this data, and validate it. But what is a valid name? I must decide something.-->
<fieldset>
<legend>Confirm your identity</legend>

<div>
<label for="name">Name:</label>
<input type="text" id="name" name="name" required minlength="2" />
</div>
<!--I require a valid email.-->
<div>
<label for="email">Email:</label>
<input type="email" id="email" name="email" required />
</div>
</fieldset>
<!--What colour should this t-shirt be? I must give 3 options. How will I make sure they don't pick other colours?-->
<fieldset>
<legend>Choose your shirt color</legend>
<div>
<label for="color-blue">Blue</label>
<input
type="radio"
id="color-blue"
name="color"
value="blue"
required
/>
</div>
<div>
<label for="color-green">Green</label>
<input type="radio" id="color-green" name="color" value="green" />
</div>
<div>
<label for="color-black">Black</label>
<input type="radio" id="color-black" name="color" value="black" />
</div>
</fieldset>
<!--What size does the customer want? I must give the following 6 options: XS, S, M, L, XL, XXL-->
<fieldset>
<legend>Choose your size</legend>
<div>
<label for="T-shirt-size">T-shirt Size</label>
<select id="T-shirt-size" name="size" required>
<option value="" disabled selected>Select a 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>
</div>
</fieldset>
<button type="submit">Submit</button>
</form>
</main>
<footer>
<!-- change to your name-->
<h2>By HOMEWORK SOLUTION</h2>
<!--Just added a comment in order to create a new branch-->
<h2>By Elena Vasileia</h2>
</footer>
</body>
</html>
Loading