OLD | NEW |
(Empty) | |
| 1 <div class="page hidden" id="autoFillEditCreditCardOverlay"> |
| 2 <h1 i18n-content="autoFillEditCreditCardTitle"></h1> |
| 3 |
| 4 <div> |
| 5 <label id="nameOnCardLabel"> |
| 6 <span i18n-content="nameOnCardLabel"></span><br> |
| 7 <input type="text" id="nameOnCard"> |
| 8 </label> |
| 9 </div> |
| 10 |
| 11 <div> |
| 12 <label id="billingAddressLabel"> |
| 13 <span i18n-content="billingAddressLabel"></span><br> |
| 14 <select id="billingAddress"></select> |
| 15 </label> |
| 16 </div> |
| 17 |
| 18 <div> |
| 19 <label id="creditCardNumberLabel"> |
| 20 <span i18n-content="creditCardNumberLabel"></span><br> |
| 21 <input type="text" id="creditCardNumber"> |
| 22 </label> |
| 23 </div> |
| 24 |
| 25 <div> |
| 26 <label id="creditCardExpirationDateLabel"> |
| 27 <span i18n-content="creditCardExpirationDateLabel"></span><br> |
| 28 <select id="expirationMonth"></select> |
| 29 <select id="expirationYear"></select> |
| 30 </label> |
| 31 </div> |
| 32 |
| 33 <div class="button-strip"> |
| 34 <button type="submit" id="autoFillEditCreditCardApplyButton" disabled |
| 35 i18n-content="autoFillEditCreditCardApplyButton"></button> |
| 36 <button type="reset" id="autoFillEditCreditCardCancelButton" |
| 37 i18n-content="autoFillEditCreditCardCancelButton"></button> |
| 38 </div> |
| 39 </div> |
OLD | NEW |