-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Howie
committed
Apr 23, 2020
1 parent
5ff200e
commit 0311817
Showing
6 changed files
with
44 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,18 @@ | ||
<div class="registration-form"> | ||
<div class="registration-form__info"> | ||
<h3>Sign up for Cats Weekly™️</h3> | ||
<h2>Sign up for Cats Weekly</h2> | ||
<p>Just fill in the information below and we'll keep you up to date with all the latest and greatest news about | ||
cats.</p> | ||
</div> | ||
<div class="registration-form__fields"> | ||
<input placeholder="First Name" /> | ||
<input placeholder="Last Name" /> | ||
<input placeholder="Email Address" /> | ||
<input placeholder="How many cats do you own?" /> | ||
<label for="first-name">First Name</label> | ||
<input id="first-name" placeholder="Henry" /> | ||
<label for="last-name">Last Name</label> | ||
<input id="last-name" placeholder="Ford" /> | ||
<label for="email-address">Email Address</label> | ||
<input id="email-address" placeholder="[email protected]" /> | ||
<label for="cats-owned">How many cats have you owned?</label> | ||
<input id="cats-owned" type="number" placeholder="23" /> | ||
</div> | ||
<div class="registration-form__actions"> | ||
<button {{on "click" (fn this.handleSubmit)}}>Sign up</button> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,6 @@ | ||
<h1>Ember a11y Form Workshop</h1> | ||
<RegistrationForm /> | ||
<header> | ||
<h1>Ember a11y Form Workshop</h1> | ||
</header> | ||
<main> | ||
<RegistrationForm /> | ||
</main> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters