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

Unified 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/resources/options/autofill_edit_creditcard_overlay.html
diff --git a/chrome/browser/resources/options/autofill_edit_creditcard_overlay.html b/chrome/browser/resources/options/autofill_edit_creditcard_overlay.html
new file mode 100644
index 0000000000000000000000000000000000000000..4223cdba0eac570162561e0c428d61b382a08917
--- /dev/null
+++ b/chrome/browser/resources/options/autofill_edit_creditcard_overlay.html
@@ -0,0 +1,39 @@
+<div class="page hidden" id="autoFillEditCreditCardOverlay">
+ <h1 i18n-content="autoFillEditCreditCardTitle"></h1>
+
+ <div>
+ <label id="nameOnCardLabel">
+ <span i18n-content="nameOnCardLabel"></span><br>
+ <input type="text" id="nameOnCard">
+ </label>
+ </div>
+
+ <div>
+ <label id="billingAddressLabel">
+ <span i18n-content="billingAddressLabel"></span><br>
+ <select id="billingAddress"></select>
+ </label>
+ </div>
+
+ <div>
+ <label id="creditCardNumberLabel">
+ <span i18n-content="creditCardNumberLabel"></span><br>
+ <input type="text" id="creditCardNumber">
+ </label>
+ </div>
+
+ <div>
+ <label id="creditCardExpirationDateLabel">
+ <span i18n-content="creditCardExpirationDateLabel"></span><br>
+ <select id="expirationMonth"></select>
+ <select id="expirationYear"></select>
+ </label>
+ </div>
+
+ <div class="button-strip">
+ <button type="submit" id="autoFillEditCreditCardApplyButton" disabled
+ i18n-content="autoFillEditCreditCardApplyButton"></button>
+ <button type="reset" id="autoFillEditCreditCardCancelButton"
+ i18n-content="autoFillEditCreditCardCancelButton"></button>
+ </div>
+</div>

Powered by Google App Engine
This is Rietveld 408576698