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

Unified Diff: chrome/browser/resources/options/password_manager.html

Issue 1193143003: Enable import/export of passwords into/from Password Manager (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: comment Created 4 years, 8 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/resources/options/password_manager.html
diff --git a/chrome/browser/resources/options/password_manager.html b/chrome/browser/resources/options/password_manager.html
index 3e2584572b7fa0876bf3b3413ebeef7a93ef6aa6..81ff66ba63fc88a849f985cd485d37312ce60f52 100644
--- a/chrome/browser/resources/options/password_manager.html
+++ b/chrome/browser/resources/options/password_manager.html
@@ -2,38 +2,50 @@
<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="credentials_enable_autosignin" type="checkbox">
- <span i18n-content="autoSigninTitle"></span>
- </label>
- <div class="setting-extra-description">
- <span i18n-content="autoSigninDescription"></span>
+ <div class="password-manager-home">
+ <div id="auto-signin-block" class="checkbox" hidden>
+ <label>
+ <input pref="credentials_enable_autosignin" type="checkbox">
+ <span i18n-content="autoSigninTitle"></span>
+ </label>
+ <div class="setting-extra-description">
+ <span i18n-content="autoSigninDescription"></span>
+ </div>
</div>
- </div>
- <div id="password-list-headers">
- <div id="passwords-title">
- <h3 i18n-content="savedPasswordsTitle"></h3>
+ <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>
- <div id="password-search-column">
- <input id="password-search-box" type="search"
- i18n-values="placeholder:passwordSearchPlaceholder" incremental>
+ <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>
+ <div class="action-area">
+ <div class="button-strip">
+ <button id="password-manager-import" class="password-manager-home"
+ i18n-content="passwordManagerImportPasswordButtonText" hidden>
+ </button>
+ <button id="password-manager-export" class="password-manager-home"
+ i18n-content="passwordManagerExportPasswordButtonText" hidden>
+ </button>
+ </div>
+ </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>
- <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">
@@ -46,7 +58,8 @@
</span>
<div class="spacer-div"></div>
<div class="button-strip">
- <button id="password-manager-confirm" i18n-content="done"></button>
+ <button id="password-manager-confirm" class="password-manager-home"
+ i18n-content="done"></button>
</div>
</div>
</div>

Powered by Google App Engine
This is Rietveld 408576698