Skip to content

Commit 9e153ba

Browse files
authored
Update payment-form.html
1 parent f2dbab8 commit 9e153ba

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

html/forms/html-form-structure/payment-form.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -48,14 +48,14 @@ <h2>Contact information</h2>
4848
<span>E-mail: </span>
4949
<strong><span aria-label="required">*</span></strong>
5050
</label>
51-
<input type="email" id="mail" name="usermail">
51+
<input type="email" id="mail" name="usermail" required="true">
5252
</p>
5353
<p>
5454
<label for="pwd">
5555
<span>Password: </span>
5656
<strong><span aria-label="required">*</span></strong>
5757
</label>
58-
<input type="password" id="pwd" name="password">
58+
<input type="password" id="pwd" name="password" required="true">
5959
</p>
6060
</section>
6161
<section>
@@ -75,7 +75,7 @@ <h2>Payment information</h2>
7575
<span>Card number:</span>
7676
<strong><span aria-label="required">*</span></strong>
7777
</label>
78-
<input type="tel" id="number" name="cardnumber">
78+
<input type="tel" id="number" name="cardnumber" required="true">
7979
</p>
8080
<p>
8181
<label for="expiration">

0 commit comments

Comments
 (0)