Debug a Donation Form - Debug a Donation Form

Tell us what’s happening:

It’s giving me an error code, what should I do?
I tried all the methods but it gives an error.

Your code so far

<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <title>Donation Form</title>
</head>
<body>
  <h1>Donation Form</h1>
 <form>
  <label for="full-name">Full Name:</label>

<input id="full-name" name="full-name" required type="text">



<label for="email">Email Address:</label>

<input id="email" name="email" type="email" required>



<label for="amount">Donation Amount ($):</label>

<input id="amount" name="amount" type="number" required>



<label for="subscribe">Subscribe</label>

<input id="subscribe" name="subscribe" type="checkbox">



<input type="submit" name="submit" value="Send">
</form>
</body>
</html>

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36

Challenge Information:

Debug a Donation Form - Debug a Donation Form

GitHub Link: freeCodeCamp/curriculum/challenges/english/blocks/lab-debug-donation-form/690ddb5e6ee94eb73ed172b0.md at main · freeCodeCamp/freeCodeCamp · GitHub

Welcome to the forum @asadesd21,

You have changed the name attribute for two of the input elements. This will cause the tests to fail.

Please click the reset button to restore the original code and try again.

image

Only make the changes asked in the instructions. Do not change anything else.

Happy coding!