fix(curriculum): Update Registration Form step 29 seed code to correctly render a checkbox (#47481)

Update seed code to render a checkbox
This commit is contained in:
Jon Rutter
2022-09-10 01:36:08 -04:00
committed by GitHub
parent af224577a9
commit ccc4a82016

View File

@@ -59,7 +59,7 @@ assert.equal(document.querySelector('fieldset:nth-child(2) > label:nth-child(3)
<fieldset>
<label for="personal-account"><input id="personal-account" type="radio" name="account-type" /> Personal Account</label>
<label for="business-account"><input id="business-account" type="radio" name="account-type" /> Business Account</label>
<label for="terms-and-conditions"><input id="terms-and-conditions" required /> I accept the terms and conditions</label>
<label for="terms-and-conditions"><input id="terms-and-conditions" type="checkbox" required /> I accept the terms and conditions</label>
</fieldset>
--fcc-editable-region--
<fieldset></fieldset>