Skip to content

Commit

Permalink
Fix lint and test
Browse files Browse the repository at this point in the history
  • Loading branch information
zfir committed Jul 13, 2024
1 parent d2c7deb commit 9af13f3
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions app/components/input-modal.hbs
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,14 @@
<div class="input-modal">
<div class="modal-content">
<button type="button" {{on "click" this.closeModal}}>X</button>
<label>First Name<input type="text" value={{this.firstName}} {{on "input" this.updateFirstName}} /></label>
<label for="first-name">First Name</label>
<input id="first-name" type="text" value={{this.firstName}} {{on "input" this.updateFirstName}} />

<label>Last Name<input type="text" value={{this.lastName}} {{on "input" this.updateLastName}} /></label>

<label>Email<input type="email" value={{this.email}} {{on "input" this.updateEmail}} /></label>
<label for="last-name">Last Name</label>
<input id="last-name" type="text" value={{this.lastName}} {{on "input" this.updateLastName}} />

<label for="email">Email</label>
<input id="email" type="email" value={{this.email}} {{on "input" this.updateEmail}} />
<button type="button" {{on "click" this.save}}>Save</button>
</div>
</div>

0 comments on commit 9af13f3

Please sign in to comment.