Hi all! New to FCC and loving it. One issue though that I’m having is that after I completed the Survey Form project, and passed all requirements, I can’t seem to get passed the screen saying submit and go to next challenge. The first time this happened I lost all my progress on the project and had to re-do it. Now I have made sure my code is saved but I still have an issue with being able to submit it and move to the next section. Could anyone help or is this a known bug
Here’s my code, not sure if its needed or not.
<h1 id="title"> How to improve YouTube</h1>
<p id="description"> Thank you for taking the time to improve Youtube. </p>
<form id="survey-form">
<div>
<label id="name-label">
Name
</label>
<input type="text" id="name" required placeholder="Jimmy John"/>
</div>
<div>
<label id="email-label">
Email
</label>
<input type="email" id="email" required placeholder="jimmyjohn@gmail.com"/>
</div>
<div>
<label id="number-label">
Age
</label>
<input type="number" max="120" min="8" id="number" required placeholder="69"/>
</div>
<div>
<label>
Who's your favorite YouTuber?
</label>
<select id="dropdown">
<option>Choose One</option>
<option>Mr. Beast</option>
<option>VSauce</option>
<option>XQC</option>
<option>Mark Rober</option>
</select>
</div>
<div>
<div>
<label>How many subscribers do you have?</label>
</div>
<div>
<input type="radio" name="subscriber count"value="subcount">100</input>
</div>
<div>
<input type="radio" name="subscriber count"value="subcount">1,000</input>
</div>
<div>
<input type="radio" name="subscriber count"value="subcount">10,000</input>
</div>
<div>
<input type="radio" name="subscriber count"value="subcount">100,000+</input>
</div>
</div>
<div>
<label>What free gift would you like?</label>
</div>
<div>
<label><input type="checkbox" name="Gifts" value="YTPremium">Youtube Premium</label>
</div>
<div>
<label><input type="checkbox" name="Gifts" value="MRBBJ">Mr. Beast Blowjob</label>
</div>
<div>
<label><input type="checkbox" name="Gifts" value="100SUBS">10,000 Subscribers</label>
</div>
<div>
<label>Additional Comments</label>
</div>
<div>
<textarea type="text"></textarea>
</div>
<button type="submit" id="submit">
Submit
</button>
</form>
** end of undefined **
** start of undefined **
** end of undefined **
I’m using a MacBook Pro on Brave Browser. I tried to submit my problem directly through the project help portal but that button doesn’t seem to work for me either. Thanks for any potential help