-
Notifications
You must be signed in to change notification settings - Fork 0
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
1 parent
291307d
commit 08378f0
Showing
1 changed file
with
4 additions
and
2 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 |
---|---|---|
|
@@ -584,14 +584,15 @@ <h2 class="heading-secondary">Get your first meal for free!</h2> | |
eating well today. You can cancel or pause anytime. And the | ||
first meal is on us! | ||
</p> | ||
<form action="#" class="cta-form"> | ||
<form class="cta-form" name="sign-up" netlify> | ||
<!-- Using for we are linking the input and the label --> | ||
<div> | ||
<label for="full-name">Full Name</label> | ||
<input | ||
id="full-name" | ||
type="text" | ||
placeholder="John Smith" | ||
name="full-name" | ||
required | ||
/> | ||
</div> | ||
|
@@ -601,12 +602,13 @@ <h2 class="heading-secondary">Get your first meal for free!</h2> | |
id="email" | ||
type="email" | ||
placeholder="[email protected]" | ||
name="email" | ||
required | ||
/> | ||
</div> | ||
<div> | ||
<label for="">Where did you hear from us?</label> | ||
<select name="" id="select-where" required> | ||
<select name="select-where" id="select-where" required> | ||
<option value="">Please chose one options</option> | ||
<option value="friends">Friends and family</option> | ||
<option value="youtube">Youtube Videos</option> | ||
|