mirror of
https://github.com/freeCodeCamp/freeCodeCamp.git
synced 2026-06-28 21:00:56 +08:00
fix(curriculum): update wording for workshop registration form (#60054)
This commit is contained in:
parent
78d3fe740e
commit
30b920f457
@ -7,7 +7,7 @@ dashedName: step-5
|
||||
|
||||
# --description--
|
||||
|
||||
That is better. Now, make the background easy on the eyes, by changing the `body` `background-color` to `#1b1b32`. Then, to see the text, change the `color` to `#f5f6f7`.
|
||||
That is better. Now, make the background easy on the eyes, by changing the `background-color` of `body` to `#1b1b32`. Then, to see the text, change the `color` to `#f5f6f7`.
|
||||
|
||||
# --hints--
|
||||
|
||||
|
||||
@ -39,7 +39,7 @@ You should give the fourth `input` element a `required` attribute.
|
||||
assert.isTrue(document.querySelectorAll('input')?.[3]?.required);
|
||||
```
|
||||
|
||||
You should not give the `submit` `input` a `required` attribute.
|
||||
You should not give the `input` with type `submit` a `required` attribute.
|
||||
|
||||
```js
|
||||
assert.isFalse(document.querySelector('input[type="submit"]')?.required);
|
||||
|
||||
Loading…
Reference in New Issue
Block a user