Skip to content

Commit

Permalink
fix attributes
Browse files Browse the repository at this point in the history
  • Loading branch information
benjaminEwhite committed Jul 12, 2016
1 parent 17fe144 commit 56f3b74
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@
<div class="container">
<h1>Shopping List</h1>

<form>
<label for="shopping-list-item">Add an item</label>
<input type="text" name="shopping-list-item" id="shopping-list-item" placeholder="e.g., broccoli">
<form id="js-shopping-list-form">
<label for="shopping-list-entry">Add an item</label>
<input type="text" name="shopping-list-entry" id="shopping-list-entry" placeholder="e.g., broccoli">
<button type="submit">Add item</button>
</form>

Expand Down Expand Up @@ -46,7 +46,7 @@ <h1>Shopping List</h1>
<span class="shopping-item shopping-item__checked">milk</span>
<div class="shopping-item-controls">
<button class="shopping-item-toggle">
<span class="button-label">uncheck</span>
<span class="button-label">check</span>
</button>
<button class="shopping-item-delete">
<span class="button-label">delete</span>
Expand Down

0 comments on commit 56f3b74

Please sign in to comment.