Index: chrome/browser/resources/managed_user_passphrase_dialog.html |
diff --git a/chrome/browser/resources/managed_user_passphrase_dialog.html b/chrome/browser/resources/managed_user_passphrase_dialog.html |
new file mode 100644 |
index 0000000000000000000000000000000000000000..304d51141c79c1743582e301d056b992988e6aa5 |
--- /dev/null |
+++ b/chrome/browser/resources/managed_user_passphrase_dialog.html |
@@ -0,0 +1,53 @@ |
+<!DOCTYPE html> |
+<!-- Copyright (c) 2013 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. --> |
+<html i18n-values="dir:textdirection"> |
+<head> |
+ <link rel="stylesheet" href="shared/css/chrome_shared.css"> |
+ <link rel="stylesheet" href="dialog.css"> |
+ <link rel="stylesheet" href="managed_user_passphrase_dialog.css"> |
+ <script src="chrome://resources/js/load_time_data.js"></script> |
+ <script src="chrome://resources/js/util.js"></script> |
+ <script src="managed_user_passphrase_dialog.js"></script> |
+ <script src="strings.js"></script> |
+</head> |
+<body i18n-values=".style.fontFamily:fontfamily;.style.fontSize:fontsize"> |
+ <div id="managed-mode-passphrase-page" class="page"> |
+ <div id="managed-user-logo"></div> |
+ <h1 i18n-content="managedModePassphrasePage"></h1> |
+ <div class="content-area"> |
+ <div id="instructions"> |
+ <label> |
+ <span i18n-content="passphrase_instruction"></span> |
James Hawkins
2013/02/12 18:57:16
nit: passphraseInstruction
Adrian Kuegel
2013/02/13 10:53:36
Done.
|
+ </label> |
+ </div> |
+ <div id="entry"> |
+ <input id="passphrase-entry" size="50" type="password" required/> |
James Hawkins
2013/02/12 18:57:16
nit: Do not close single tags.
Adrian Kuegel
2013/02/13 10:53:36
Done.
|
+ </div> |
+ <!-- TODO(akuegel): Create a link to a page which explains how to reset |
James Hawkins
2013/02/12 18:57:16
Personally I'd just remove this code since it's de
Adrian Kuegel
2013/02/13 10:53:36
Ok, I removed it.
|
+ the passphrase. |
+ <div id="ref"> |
+ <a href="http://www.google.com" target="_blank"> |
+ <span i18n-content="forgot_passphrase"></span></a> |
James Hawkins
2013/02/12 18:57:16
nit: </a> needs to be on a new line.
James Hawkins
2013/02/12 18:57:16
nit: forgotPassphrase
|
+ </div> |
+ --> |
+ <div id="buttons"> |
+ <div id="cancel"> |
+ <button id="cancel-passphrase-button" |
+ i18n-content="cancel_passphrase_button"></button> |
James Hawkins
2013/02/12 18:57:16
nit: cancelPassphraseButton
Adrian Kuegel
2013/02/13 10:53:36
Done.
|
+ <div id="unlock"> |
+ <button id="unlock-passphrase-button" |
+ i18n-content="unlock_passphrase_button" disabled></button> |
James Hawkins
2013/02/12 18:57:16
unlockPassphraseButton
Adrian Kuegel
2013/02/13 10:53:36
Done.
|
+ </div> |
+ </div> |
+ <div id="incorrect-passphrase-warning" hidden> |
+ <label> |
+ <span i18n-content="incorrect_passphrase_warning"></span> |
James Hawkins
2013/02/12 18:57:16
nit: incorrectPassphraseWarning
Adrian Kuegel
2013/02/13 10:53:36
Done.
|
+ </label> |
+ </div> |
+ </div> |
+ </div> |
+ <script src="chrome://resources/js/i18n_template2.js"></script> |
James Hawkins
2013/02/12 18:57:16
Why is this down here? Are you even using this?
Adrian Kuegel
2013/02/13 10:53:36
It is used to generated the correct text for the l
|
+</body> |
+</html> |