Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(189)

Side by Side Diff: chrome/browser/resources/options/certificate_backup_overlay.html

Issue 9814030: get rid of old options pages (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: more fixes Created 8 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 <div id="certificateBackupOverlay" class="page" hidden>
2 <h1 i18n-content="certificateExportPasswordDescription"></h1>
3 <div class="content-area">
4 <table>
5 <tr>
6 <td>
7 <label for="certificateBackupPassword">
8 <span i18n-content="certificatePasswordLabel"></span>
9 </label>
10 </td>
11 <td>
12 <input id="certificateBackupPassword" type="password">
13 </td>
14 </tr>
15 <tr>
16 <td>
17 <label for="certificateBackupPassword2">
18 <span i18n-content="certificateConfirmPasswordLabel"></span>
19 </label>
20 </td>
21 <td>
22 <input id="certificateBackupPassword2" type="password">
23 </td>
24 </tr>
25 </table>
26 <p>
27 <span i18n-content="certificateExportPasswordHelp"></span>
28 </p>
29 </div>
30 <div class="action-area">
31 <div class="button-strip">
32 <button id="certificateBackupCancelButton" type="reset"
33 i18n-content="cancel"></button>
34 <button id="certificateBackupOkButton" type="submit" i18n-content="ok"
35 disabled></button>
36 </div>
37 </div>
38 </div>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698