Skip to content

Commit bab3458

Browse files
authored
fix(curriculum): updates Incorrect freeCodeCamp URL (freeCodeCamp#56975)
1 parent 410a51a commit bab3458

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

curriculum/challenges/english/25-front-end-development/lab-personal-portfolio/bd7158d8c242eddfaeb5bd13.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -313,7 +313,7 @@ Your `#navbar` element should always be at the top of the viewport.
313313
</p>
314314
<p>
315315
&copy; Created for
316-
<a href="https://www.freecodecamp.com/" target="_blank">freeCodeCamp <i
316+
<a href="https://www.freecodecamp.org/" target="_blank">freeCodeCamp <i
317317
class="fab fa-free-code-camp"></i></a>
318318
</p>
319319
</footer>

curriculum/challenges/english/25-front-end-development/lab-product-landing-page/587d78af367417b2b2512b04.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ Fulfill the user stories below and get all the tests to pass to complete the lab
2323
9. The `#email` input field should have placeholder text to let users know what the field is for.
2424
10. The `#email` input field should use HTML5 validation to confirm that the entered text is an email address.
2525
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`).
2727
13. The navbar should always be at the top of the viewport.
2828
14. Your product landing page should have at least one media query.
2929
15. Your product landing page should utilize CSS flexbox at least once.
@@ -187,11 +187,11 @@ const el = document.getElementById('submit')
187187
assert(!!el && el.type === 'submit')
188188
```
189189

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`.
191191

192192
```js
193193
const el = document.getElementById('form')
194-
assert(!!el && el.action === 'https://www.freecodecamp.com/email-submit')
194+
assert(!!el && el.action === 'https://www.freecodecamp.org/email-submit')
195195
```
196196

197197
Your `#email` should have a `name` attribute of `email`.
@@ -320,7 +320,7 @@ assert(usesFlex || usesFlexMedia)
320320

321321
<section id="hero">
322322
<h2>Handcrafted, home-made masterpieces</h2>
323-
<form id="form" action="https://www.freecodecamp.com/email-submit">
323+
<form id="form" action="https://www.freecodecamp.org/email-submit">
324324
<input name="email" id="email" type="email" placeholder="Enter your email address" required />
325325
<input id="submit" type="submit" value="Get Started" class="btn" />
326326
</form>

0 commit comments

Comments
 (0)