Open
Description
We recently received the following email concerning the registration form workshop
https://www.freecodecamp.org/learn/full-stack-developer/workshop-registration-form/step-60
Here is the email:
I hope your day is going well and may your work be easy. I want to show you a possible mistake in a step. The step in the link above has 2 radıo buttons. But they don't have a value. Your tutorıal doesn't tell us to code one. So I just wanted to notify you about that. I remember that name and value does show to the developer which value was submitted.
Looking at the project, I agree. We should add value attributes for the two radio buttons here
<input type="radio" name="account-type" value="personal" />
<input type="radio" name="account-type" value="business" />