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

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

Issue 10809005: Options: Rename chrome/browser/resources/options2 -> chrome/browser/resources/options. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix. Created 8 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 | Annotate | Revision Log
OLDNEW
(Empty)
1 <div id="autofill-edit-credit-card-overlay" class="page" hidden>
2 <div class="close-button"></div>
3 <h1 id="autofill-credit-card-title"></h1>
4 <div class="content-area">
5 <div class="input">
6 <label>
7 <span i18n-content="nameOnCardLabel"></span><br>
8 <input id="name-on-card" type="text">
9 </label>
10 </div>
11 <div class="input">
12 <label>
13 <span i18n-content="creditCardNumberLabel"></span><br>
14 <input id="credit-card-number" type="text">
15 </label>
16 </div>
17 <div class="input">
18 <label>
19 <span i18n-content="creditCardExpirationDateLabel"></span><br>
20 <select id="expiration-month"></select>
21 <select id="expiration-year"></select>
22 </label>
23 </div>
24 </div>
25 <div class="action-area button-strip">
26 <button id="autofill-edit-credit-card-cancel-button" type="reset"
27 i18n-content="cancel"></button>
28 <button id="autofill-edit-credit-card-apply-button" type="submit"
29 i18n-content="ok" disabled></button>
30 </div>
31 </div>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698