fix(curriculum): change card and cvv input types to text (#61827)
Some checks failed
i18n - Build Validation / Validate i18n Builds (22) (push) Has been cancelled
CI - Node.js / Lint (22) (push) Has been cancelled
CI - Node.js / Build (22) (push) Has been cancelled
CI - Node.js / Test (22) (push) Has been cancelled
CI - Node.js / Test - Upcoming Changes (22) (push) Has been cancelled
CI - Node.js / Test - i18n (italian, 22) (push) Has been cancelled
CI - Node.js / Test - i18n (portuguese, 22) (push) Has been cancelled
i18n - Download Client UI / Client (push) Has been cancelled

This commit is contained in:
errantpianist 2025-08-15 16:30:59 +01:00 committed by GitHub
parent 95263efc12
commit 0741793ceb
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -157,7 +157,7 @@ assert.isAtLeast(requiredInputs?.length, 2)
</div>
<div>
<label for="card-number">Card Number</label>
<input type="number" id="card-number" name="card-number" required aria-required="true">
<input type="text" id="card-number" name="card-number" required aria-required="true">
</div>
<div>
<label for="expiry-date">Expiry Date</label>
@ -165,7 +165,7 @@ assert.isAtLeast(requiredInputs?.length, 2)
</div>
<div>
<label for="cvv">CVV</label>
<input type="number" id="cvv" name="cvv" required aria-required="true" aria-label="Card Verification Value">
<input type="text" id="cvv" name="cvv" required aria-required="true" aria-label="Card Verification Value">
</div>
<input type="submit" value="Place Order">
</form>