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

Unified 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/resources/options/autofill_edit_address_overlay.html
diff --git a/chrome/browser/resources/options/autofill_edit_address_overlay.html b/chrome/browser/resources/options/autofill_edit_address_overlay.html
new file mode 100644
index 0000000000000000000000000000000000000000..78e41896b63f840ef60ca21b3f4d46c81863ec42
--- /dev/null
+++ b/chrome/browser/resources/options/autofill_edit_address_overlay.html
@@ -0,0 +1,60 @@
+<div class="page hidden" id="autoFillEditAddressOverlay">
+ <h1 i18n-content="autoFillEditAddressTitle"></h1>
+
+ <div><label id="fullNameLabel"><span i18n-content="fullNameLabel"></span><br>
+ <input type="text" id="fullName"></label></div>
+ <div><label id="countryLabel"><span i18n-content="countryLabel"></span><br>
+ <input type="text" id="country"></label></div>
+ <div><label id="companyNameLabel"><span i18n-content="companyNameLabel">
+ </span><br><input type="text" id="companyName"></label></div>
+ <div><label id="addrLine1Label"><span i18n-content="addrLine1Label"></span>
+ <br><input type="text" id="addrLine1"></label></div>
+ <div><label id="addrLine2Label"><span i18n-content="addrLine2Label"></span>
+ <br><input type="text" id="addrLine2"></label></div>
+
+ <div>
+ <table>
+ <tr>
+ <td><label id="cityLabel" for="city"><span i18n-content="cityLabel">
+ </span></label></td>
+ <td><label id="stateLabel" for="state">
+ <span i18n-content="stateLabel"></span></label></td>
+ <td><label id="zipCodeLabel" for="zipCode">
+ <span i18n-content="zipCodeLabel"></span></label></td>
+ </tr>
+ <tr>
+ <td><input type="text" id="city"></td>
+ <td><input type="text" id="state"></td>
+ <td><input type="text" id="zipCode"></td>
+ </tr>
+ </table>
+ </div>
+
+ <div><label id="countryLabel"><span i18n-content="countryLabel"></span><br>
+ <input type="text" id="country"></label></div>
+
+ <div>
+ <table>
+ <tr>
+ <td><label id="phoneLabel" for="phone">
+ <span i18n-content="phoneLabel"></span></label></td>
+ <td><label id="faxLabel" for="fax">
+ <span i18n-content="faxLabel"></span></label></td>
+ </tr>
+ <tr>
+ <td><input type="text" id="phone"></td>
+ <td><input type="text" id="fax"></td>
+ </tr>
+ </table>
+ </div>
+
+ <div><label id="emailLabel"><span i18n-content="emailLabel"></span><br>
+ <input type="text" id="email"></label></div>
+
+ <div class="button-strip">
+ <button type="submit" id="autoFillEditAddressApplyButton" disabled
+ i18n-content="autoFillEditAddressApplyButton"></button>
+ <button type="reset" id="autoFillEditAddressCancelButton"
+ i18n-content="autoFillEditAddressCancelButton"></button>
+ </div>
+</div>

Powered by Google App Engine
This is Rietveld 408576698