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

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

Issue 3157027: DOMUI: Add the basic HTML for the 'Edit Address' AutoFill overlay. (Closed)
Patch Set: Review fixes 2. 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="autoFillEditAddressOverlay">
2 <h1 i18n-content="autoFillEditAddressTitle"></h1>
3
4 <div><label id="fullNameLabel"><span i18n-content="fullNameLabel"></span><br>
5 <input type="text" id="fullName"></label></div>
6 <div><label id="countryLabel"><span i18n-content="countryLabel"></span><br>
7 <input type="text" id="country"></label></div>
8 <div><label id="companyNameLabel"><span i18n-content="companyNameLabel">
9 </span><br><input type="text" id="companyName"></label></div>
10 <div><label id="addrLine1Label"><span i18n-content="addrLine1Label"></span>
11 <br><input type="text" id="addrLine1"></label></div>
12 <div><label id="addrLine2Label"><span i18n-content="addrLine2Label"></span>
13 <br><input type="text" id="addrLine2"></label></div>
14
15 <div>
16 <table>
17 <tr>
18 <td><label id="cityLabel" for="city"><span i18n-content="cityLabel">
19 </span></label></td>
20 <td><label id="stateLabel" for="state">
21 <span i18n-content="stateLabel"></span></label></td>
22 <td><label id="zipCodeLabel" for="zipCode">
23 <span i18n-content="zipCodeLabel"></span></label></td>
24 </tr>
25 <tr>
26 <td><input type="text" id="city"></td>
27 <td><input type="text" id="state"></td>
28 <td><input type="text" id="zipCode"></td>
29 </tr>
30 </table>
31 </div>
32
33 <div><label id="countryLabel"><span i18n-content="countryLabel"></span><br>
34 <input type="text" id="country"></label></div>
35
36 <div>
37 <table>
38 <tr>
39 <td><label id="phoneLabel" for="phone">
40 <span i18n-content="phoneLabel"></span></label></td>
41 <td><label id="faxLabel" for="fax">
42 <span i18n-content="faxLabel"></span></label></td>
43 </tr>
44 <tr>
45 <td><input type="text" id="phone"></td>
46 <td><input type="text" id="fax"></td>
47 </tr>
48 </table>
49 </div>
50
51 <div><label id="emailLabel"><span i18n-content="emailLabel"></span><br>
52 <input type="text" id="email"></label></div>
53
54 <div class="button-strip">
55 <button type="submit" id="autoFillEditAddressApplyButton" disabled
56 i18n-content="autoFillEditAddressApplyButton"></button>
57 <button type="reset" id="autoFillEditAddressCancelButton"
58 i18n-content="autoFillEditAddressCancelButton"></button>
59 </div>
60 </div>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698