You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: curriculum/challenges/english/25-front-end-development/lab-product-landing-page/587d78af367417b2b2512b04.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -23,7 +23,7 @@ Fulfill the user stories below and get all the tests to pass to complete the lab
23
23
9. The `#email` input field should have placeholder text to let users know what the field is for.
24
24
10. The `#email` input field should use HTML5 validation to confirm that the entered text is an email address.
25
25
11. Within the form, there should be a submit `input` with a corresponding `id="submit"`.
26
-
12. When you click the `#submit` element, the email should be submitted to a static page (use this mock URL: `https://www.freecodecamp.com/email-submit`).
26
+
12. When you click the `#submit` element, the email should be submitted to a static page (use this mock URL: `https://www.freecodecamp.org/email-submit`).
27
27
13. The navbar should always be at the top of the viewport.
28
28
14. Your product landing page should have at least one media query.
29
29
15. Your product landing page should utilize CSS flexbox at least once.
@@ -187,11 +187,11 @@ const el = document.getElementById('submit')
187
187
assert(!!el &&el.type==='submit')
188
188
```
189
189
190
-
Your `#form` should have an `action` attribute of `https://www.freecodecamp.com/email-submit`.
190
+
Your `#form` should have an `action` attribute of `https://www.freecodecamp.org/email-submit`.
0 commit comments