Index: chrome/browser/resources/options/managed_user_set_passphrase.html |
diff --git a/chrome/browser/resources/options/managed_user_set_passphrase.html b/chrome/browser/resources/options/managed_user_set_passphrase.html |
new file mode 100644 |
index 0000000000000000000000000000000000000000..3b9b61ff515e1e6c9cde2578a31585f3a923581f |
--- /dev/null |
+++ b/chrome/browser/resources/options/managed_user_set_passphrase.html |
@@ -0,0 +1,27 @@ |
+<!-- Copyright (c) 2012 The Chromium Authors. All rights reserved. |
+ Use of this source code is governed by a BSD-style license that can be |
+ found in the LICENSE file. --> |
+<div id="managed-user-set-passphrase-overlay" class="page" hidden> |
+ <div class="close-button"></div> |
+ <h1 i18n-content="setPassphraseTitle"></h1> |
+ <div class="content-area"> |
+ <div> |
+ <span i18n-content="setPassphraseInstructions"></span> |
Bernhard Bauer
2013/02/05 12:52:23
You could set the i18n-content property directly o
Adrian Kuegel
2013/02/05 13:21:05
Done.
|
+ </div> |
+ <div class="managed-user-passphrase-container"> |
+ <input id="managed-user-passphrase" type="password" align="center" |
Bernhard Bauer
2013/02/05 12:52:23
What's the align=center for? Could you do that in
Adrian Kuegel
2013/02/05 13:21:05
I think that was some temporary test, it is not ne
|
+ i18n-values=".placeholder:enterPassphrase" required> |
+ </div> |
+ <div class="managed-user-passphrase-container"> |
+ <input id="passphrase-confirm" class="equal_passphrases" type="password" |
+ align="center" i18n-values=".placeholder:confirmPassphrase" required> |
+ </div> |
+ <div id="passphrase-mismatch" hidden> |
+ <span i18n-content="passphraseMismatch"></span> |
+ </div> |
+ <div> |
+ <button id="save-passphrase" i18n-content="savePassphrase" disabled> |
+ </button> |
+ </div> |
+ </div> |
+</div> |