hi. doing the checkout page for the accessibility section. so it passed, but not showing me the placeholder text mm/yy and one of my fields says card-date. is this wrong or something querky. using firefox. so will paste my code if thats okay.
marvin.
ps: pasting now.
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Check out</title>
</head>
<body>
<h1>Checkout</h1>
<section>
<img src="https://cdn.freecodecamp.org/curriculum/labs/cube.jpg" alt="Left Hand Spoon" />
<h2>Your Cart</h2>
</section>
<section>
<h2>Payment Information</h2>
<form>
<label for="card-name">Cardholder Name</label>
<input type="text" id="card-name" name="card-name" value="card-name" aria-required="true" required>
<label for="card-number">Card Number</label>
<input type="number" id="card-number" name="card-number" value="card-number" required>
<label for="card-date">Expiry Date</label>
<input type="text" id="card-date" name="card-date" value="card-date" placeholder="mm/yy" required>
<label for="cvv">Card Verification Value</label>
<input type="text" id="cvv" name="cvv" value="cvv" aria-required="true" required>
<button type="submit">Place Order</button>
</section>
</form>
</body>
</html>