summaryrefslogtreecommitdiffstats
path: root/chrome/browser/resources/options/autofill_options.html
blob: f24da00fe726602d26b42ed50b19abd97129d421 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
<div id="autofill-options" class="page" hidden>
  <div class="close-button"></div>
  <h1 i18n-content="autofillOptionsPage"></h1>
  <div class="content-area">
<if expr="is_macosx">
    <div class="checkbox">
      <label>
        <input pref="autofill.use_mac_address_book" type="checkbox"
             id="autofill-use-mac-address-book-checkbox"
             metric="Options_AutofillAuxiliaryProfiles">
        <span i18n-content="auxiliaryProfilesEnabled"></span>
      </label>
    </div>
</if>
    <h3 i18n-content="autofillAddresses"></h3>
    <div class="settings-list">
      <list id="address-list"></list>
      <div>
        <button id="autofill-add-address" i18n-content="autofillAddAddress">
        </button>
      </div>
    </div>
    <h3 i18n-content="autofillCreditCards"></h3>
    <div class="settings-list">
      <list id="creditcard-list"></list>
      <div>
        <button id="autofill-add-creditcard"
            i18n-content="autofillAddCreditCard"></button>
      </div>
    </div>
  </div>
  <div class="action-area">
    <a id="autofill-help" target="_blank" i18n-values="href:helpUrl"
        i18n-content="helpButton">
    </a>
    <div class="button-strip">
      <button id="autofill-options-confirm" class="default-button"
          i18n-content="done"></button>
    </div>
  </div>
</div>