summaryrefslogtreecommitdiffstats
path: root/chrome/browser/resources/options/certificate_backup_overlay.html
blob: 146b38f6eea1db48bd5189747bf8783c6f575487 (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
<div id="certificateBackupOverlay" class="page" hidden>
  <div class="close-button"></div>
  <h1 i18n-content="certificateExportPasswordDescription"></h1>
  <div class="content-area">
    <table>
      <tr>
        <td>
          <label for="certificateBackupPassword">
            <span i18n-content="certificatePasswordLabel"></span>
          </label>
        </td>
        <td>
          <input id="certificateBackupPassword" type="password">
        </td>
      </tr>
      <tr>
        <td>
          <label for="certificateBackupPassword2">
            <span i18n-content="certificateConfirmPasswordLabel"></span>
          </label>
        </td>
        <td>
          <input id="certificateBackupPassword2" type="password">
        </td>
      </tr>
    </table>
    <p>
      <span i18n-content="certificateExportPasswordHelp"></span>
    </p>
  </div>
  <div class="action-area">
    <div class="button-strip">
      <button id="certificateBackupCancelButton" type="reset"
          i18n-content="cancel"></button>
      <button id="certificateBackupOkButton" type="submit" i18n-content="ok"
          disabled></button>
    </div>
  </div>
</div>