fix(curriculum): update wording for workshop registration form (#60054)

This commit is contained in:
Melvin Kosisochukwu 2025-04-29 21:41:18 +01:00 committed by GitHub
parent 78d3fe740e
commit 30b920f457
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 2 additions and 2 deletions

View File

@ -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--

View File

@ -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);