Chromium Code Reviews| 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..1d9f2bac03875254f7b1cde349bf0d57d1f89097 |
| --- /dev/null |
| +++ b/chrome/browser/resources/options/managed_user_set_passphrase.html |
| @@ -0,0 +1,25 @@ |
| +<!-- 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. --> |
| +<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 i18n-content="setPassphraseInstructions"> |
| + </div> |
|
James Hawkins
2013/02/11 18:04:19
nit: I think this can fit on the line above.
Adrian Kuegel
2013/02/11 18:34:46
Done.
|
| + <div class="managed-user-passphrase-container"> |
| + <input id="managed-user-passphrase" type="password" align="center" |
| + i18n-values=".placeholder:enterPassphrase" required> |
| + </div> |
| + <div class="managed-user-passphrase-container"> |
| + <input id="passphrase-confirm" class="equal_passphrases" type="password" |
| + i18n-values=".placeholder:confirmPassphrase" required> |
| + </div> |
| + <div id="passphrase-mismatch" i18n-content="passphraseMismatch" hidden> |
| + </div> |
| + <div> |
| + <button id="save-passphrase" i18n-content="savePassphrase" disabled> |
| + </button> |
| + </div> |
| + </div> |
| +</div> |