summaryrefslogtreecommitdiff
path: root/chromium/chrome/browser/resources/options/password_manager.html
blob: 888fb5cf2ec8147eedcf6b049a148bdbe05ae3d3 (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
42
43
44
45
46
47
48
49
50
51
52
<div id="password-manager" class="page" hidden>
  <div class="close-button"></div>
  <h1 i18n-content="passwordsPage"></h1>
  <div class="content-area">
    <div id="auto-signin-block" class="checkbox" hidden>
      <label>
        <input pref="profile.password_manager_auto_signin" type="checkbox">
        <span i18n-content="autoSigninTitle"></span>
      </label>
      <div class="setting-extra-description">
        <span i18n-content="autoSigninDescription"></span>
      </div>
    </div>
    <div id="password-list-headers">
      <div id="passwords-title">
        <h3 i18n-content="savedPasswordsTitle"></h3>
      </div>
      <div id="password-search-column">
        <input id="password-search-box" type="search"
            i18n-values="placeholder:passwordSearchPlaceholder" incremental>
      </div>
    </div>
    <list id="saved-passwords-list" class="settings-list"></list>
    <div id="saved-passwords-list-empty-placeholder"
         class="settings-list-empty" hidden>
      <span i18n-content="passwordsNoPasswordsDescription"></span>
      <a target="_blank" i18n-content="learnMore"
         i18n-values="href:passwordManagerLearnMoreURL"></a>
    </div>
    <h3 i18n-content="passwordExceptionsTitle"></h3>
    <list id="password-exceptions-list" class="settings-list"></list>
    <div id="password-exceptions-list-empty-placeholder" hidden
         class="settings-list-empty">
      <span i18n-content="passwordsNoExceptionsDescription"></span>
      <a id="exceptions-learn-more" target="_blank" i18n-content="learnMore"
         i18n-values="href:passwordManagerLearnMoreURL"></a>
    </div>
  </div>
  <div class="action-area">
    <span id="manage-passwords-span" hidden>
      <span i18n-content="passwordsManagePasswordsBeforeLinkText"></span>
      <a id="manage-passwords-link" target="_blank"
         i18n-content="passwordsManagePasswordsLinkText"
         i18n-values="href:passwordsManagePasswordsLink"></a>
      <span i18n-content="passwordsManagePasswordsAfterLinkText"></span>
    </span>
    <div class="spacer-div"></div>
    <div class="button-strip">
      <button id="password-manager-confirm" i18n-content="done"></button>
    </div>
  </div>
</div>