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

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

Issue 11783008: Add a lock to the managed user settings page and require authentication for unlocking. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Several fixes Created 7 years, 11 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
(Empty)
1 <!DOCTYPE html>
2 <!-- Copyright (c) 2012 The Chromium Authors. All rights reserved.
3 Use of this source code is governed by a BSD-style license that can be
4 found in the LICENSE file. -->
5 <html i18n-values="dir:textdirection">
6 <head>
7 <link rel="stylesheet" href="shared/css/chrome_shared.css">
8 <link rel="stylesheet" href="dialog.css">
9 <link rel="stylesheet" href="managed_user_passphrase_dialog.css">
10 <script src="chrome://resources/js/load_time_data.js"></script>
11 <script src="chrome://resources/js/util.js"></script>
12 <script src="managed_user_passphrase_dialog.js"></script>
13 </head>
14 <body i18n-values=".style.fontFamily:fontfamily;.style.fontSize:fontsize">
15 <div id="managed-mode-passphrase-page" class="page">
16 <div id="chrome-kid-logo"></div>
Bernhard Bauer 2013/01/08 17:43:14 Spaces instead of tabs please.
Adrian Kuegel 2013/01/09 12:10:05 Done. This was caused by my bad configuration of g
17 <h1 i18n-content="managedModePassphrasePage"></h1>
18 <div class="content-area">
19 <div id="instructions">
20 <label>
21 <span i18n-content="passphrase_instruction"></span>
22 </label>
23 </div>
24 <div id="entry">
25 <input id="passphrase-entry" size="50" type="password" required/>
26 </div>
27 <!-- TODO(akuegel): Create a link to a page which explai ns how to reset the
Bernhard Bauer 2013/01/08 17:43:14 Less indentation? Also, we can probably leave the
Adrian Kuegel 2013/01/09 12:10:05 I guess there were some tabs in there, too, they a
28 passphrase
29 <div id="ref">
30 <a href="http://www.google.com" target="_blank">
31 <span i18n-content="forgot_passphrase"></span></a>
32 </div>
33 -->
34 <div id="buttons">
35 <div id="cancel">
36 <button id="cancel-passphrase-button"
37 i18n-content="cancel_passphrase_button"></button>
Bernhard Bauer 2013/01/08 17:43:14 Indent four space w/r/t previous line.
Adrian Kuegel 2013/01/09 12:10:05 Done.
38 <div id="unlock">
39 <button id="unlock-passphrase-button"
40 i18n-content="unlock_passphrase_button" disabled></button>
Bernhard Bauer 2013/01/08 17:43:14 Indentation
Adrian Kuegel 2013/01/09 12:10:05 Done.
41 </div>
42 </div>
43 <div id="incorrect-passphrase-warning" hidden>
44 <label>
45 <span i18n-content="incorrect_passphrase_warning"></span>
46 </label>
47 </div>
48 </div>
49 </div>
50 <script src="strings.js"></script>
51 <script src="chrome://resources/js/i18n_template2.js"></script>
52 </body>
53 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698