Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

0010 day 0 and 1 #2

Merged
merged 2 commits into from
Dec 13, 2022
Merged
Show file tree
Hide file tree
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
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
**/node_modules
.DS_Store
File renamed without changes.
File renamed without changes.
File renamed without changes.
10 changes: 5 additions & 5 deletions src/week1/day0/sign-up.html → src/week1/day0-1/sign-up.html
Original file line number Diff line number Diff line change
Expand Up @@ -15,24 +15,24 @@ <h1>Sign up</h1>
<form autocomplete="off">
<div>
<label for="first-name">First name</label>
<input required type="text" name="first-name" />
<input required type="text" id="first-name" />
</div>

<div>
<label for="last-name">Last name</label>
<input required type="text" name="last-name" />
<input required type="text" id="last-name" />
</div>
<div>
<label for="email">Email</label>
<input required type="email" name="email" />
<input required type="email" id="email" />
</div>
<div>
<label for="birthday">Birthday</label>
<input required type="date" name="birthday" max="2022-11-17"/>
<input required type="date" id="birthday" max="2022-11-17" />
</div>
<div>
<label for="favourite-sport">Favourite sport</label>
<select required name="favourite-sport">
<select required id="favourite-sport">
<option value="">seleccione..</option>
<option value="hockey">Hockey</option>
<option value="futbol">Futbol</option>
Expand Down
File renamed without changes.
Empty file removed src/week1/day0/.txt
Empty file.