-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Daniel fhc lab04 burrito order form #200
base: main
Are you sure you want to change the base?
Conversation
<input type="radio" name="Tortilla" value="Spinach"> Spinach | ||
<input type="radio" name="Tortilla" value="Corn"> Corn <br> | ||
<p>Protein:</p> | ||
<input type="checkbox" name="Meat" value="Carnitas"> Carnitas |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
should be radio buttons
<input type="checkbox" name="Meat" value="Sofritas"> Sofritas | ||
<br> | ||
<p>Beans:</p> | ||
<input type="checkbox" name="Beans" value="Beans"> Black<br> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
should be radio buttons
<input type="checkbox" name="Beans" value="Beans"> Black<br> | ||
<input type="checkbox" name="Beans" value="Beans"> Pinto<br> | ||
<p>Rice:</p> | ||
<input type="checkbox" name="Cheese" value="Cheese"> White<br> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
should be radio buttons. name should be Rice. etc.
No description provided.