| 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>
|
|
|