Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(271)

Side by Side Diff: chrome/browser/resources/options/autofill_edit_creditcard_overlay.html

Issue 3174028: DOMUI: Implement the base HTML for the 'Edit credit card' AutoFill overlay. (Closed)
Patch Set: Forgotten files. Created 10 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(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>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698