summaryrefslogtreecommitdiffstats
path: root/chrome/browser/resources/options/password_manager.html
blob: 333042f78b2d1169778bf9e87c6bae159485f3ef (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
<div id="password-manager" class="page" hidden>
  <h1 i18n-content="passwordsPage"></h1>
  <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
          results="10" autosave="org.chromium.options.passwords.search">
    </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 target="_blank" i18n-content="learnMore"
       i18n-values="href:passwordManagerLearnMoreURL"></a>
  </div>
</div>