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

Unified Diff: chrome/browser/resources/options2/certificate_backup_overlay.html

Issue 8895023: Options2: Pull the trigger. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: DIAF. Created 9 years 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/resources/options2/certificate_backup_overlay.html
diff --git a/chrome/browser/resources/options2/certificate_backup_overlay.html b/chrome/browser/resources/options2/certificate_backup_overlay.html
new file mode 100644
index 0000000000000000000000000000000000000000..b0bcea3910b6bba510d3f75843a4ff0ee0fb842f
--- /dev/null
+++ b/chrome/browser/resources/options2/certificate_backup_overlay.html
@@ -0,0 +1,38 @@
+<div id="certificateBackupOverlay" class="page" hidden>
+ <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>

Powered by Google App Engine
This is Rietveld 408576698