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

Side by Side Diff: chrome/browser/resources/managed_user_passphrase_dialog.html

Issue 14325003: Clean up managed user settings dialogs. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix broken merge Created 7 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <!-- Copyright (c) 2013 The Chromium Authors. All rights reserved. 2 <!-- Copyright (c) 2013 The Chromium Authors. All rights reserved.
3 Use of this source code is governed by a BSD-style license that can be 3 Use of this source code is governed by a BSD-style license that can be
4 found in the LICENSE file. --> 4 found in the LICENSE file. -->
5 <html i18n-values="dir:textdirection"> 5 <html i18n-values="dir:textdirection">
6 <head> 6 <head>
7 <link rel="stylesheet" href="chrome://resources/css/chrome_shared.css">
7 <link rel="stylesheet" href="managed_user_passphrase_dialog.css"> 8 <link rel="stylesheet" href="managed_user_passphrase_dialog.css">
8 <script src="chrome://resources/js/load_time_data.js"></script> 9 <script src="chrome://resources/js/load_time_data.js"></script>
9 <script src="chrome://resources/js/util.js"></script> 10 <script src="chrome://resources/js/util.js"></script>
10 <script src="chrome://managed-user-passphrase/strings.js"></script> 11 <script src="chrome://managed-user-passphrase/strings.js"></script>
11 <script 12 <script
12 src="chrome://managed-user-passphrase/managed_user_passphrase_dialog.js"> 13 src="chrome://managed-user-passphrase/managed_user_passphrase_dialog.js">
13 </script> 14 </script>
14 </head> 15 </head>
15 <body i18n-values=".style.fontFamily:fontfamily;.style.fontSize:fontsize"> 16 <body i18n-values=".style.fontFamily:fontfamily;.style.fontSize:fontsize">
16 <div id="managed-mode-passphrase-page" class="page"> 17 <div id="managed-mode-passphrase-page" class="page">
17 <div id="managed-user-logo"></div> 18 <div id="managed-user-logo"></div>
18 <h1 i18n-content="managedModePassphrasePage"></h1> 19 <h1 i18n-content="managedModePassphrasePage"></h1>
19 <div class="content-area"> 20 <div class="content-area">
20 <div id="instructions"> 21 <div id="instructions">
21 <label> 22 <span i18n-content="passphraseInstruction"></span>
22 <span i18n-content="passphraseInstruction"></span>
23 </label>
24 </div> 23 </div>
25 <div id="entry"> 24 <div id="entry">
26 <input id="passphrase-entry" size="50" type="password" required> 25 <input id="passphrase-entry" type="password" required>
27 </div> 26 </div>
28 <div id="buttons"> 27 <div id="buttons">
29 <button id="cancel-passphrase-button" 28 <button id="cancel-passphrase-button"
30 i18n-content="cancelPassphraseButton"> 29 i18n-content="cancelPassphraseButton">
31 </button> 30 </button>
32 <button id="unlock-passphrase-button" 31 <button id="unlock-passphrase-button"
33 i18n-content="unlockPassphraseButton" disabled> 32 i18n-content="unlockPassphraseButton" disabled>
34 </button> 33 </button>
35 </div> 34 </div>
36 <div id="incorrect-passphrase-warning" hidden> 35 <div id="incorrect-passphrase-warning" hidden>
37 <label> 36 <span i18n-content="incorrectPassphraseWarning"></span>
38 <span i18n-content="incorrectPassphraseWarning"></span>
39 </label>
40 </div> 37 </div>
41 </div> 38 </div>
42 </div> 39 </div>
43 <script src="chrome://resources/js/i18n_template2.js"></script> 40 <script src="chrome://resources/js/i18n_template2.js"></script>
44 </body> 41 </body>
45 </html> 42 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698