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

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

Issue 12218118: Add a passphrase dialog for managed user accounts. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 10 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) 2013 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 <script src="strings.js"></script>
14 </head>
15 <body i18n-values=".style.fontFamily:fontfamily;.style.fontSize:fontsize">
16 <div id="managed-mode-passphrase-page" class="page">
17 <div id="managed-user-logo"></div>
18 <h1 i18n-content="managedModePassphrasePage"></h1>
19 <div class="content-area">
20 <div id="instructions">
21 <label>
22 <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.
23 </label>
24 </div>
25 <div id="entry">
26 <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.
27 </div>
28 <!-- 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.
29 the passphrase.
30 <div id="ref">
31 <a href="http://www.google.com" target="_blank">
32 <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
33 </div>
34 -->
35 <div id="buttons">
36 <div id="cancel">
37 <button id="cancel-passphrase-button"
38 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.
39 <div id="unlock">
40 <button id="unlock-passphrase-button"
41 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.
42 </div>
43 </div>
44 <div id="incorrect-passphrase-warning" hidden>
45 <label>
46 <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.
47 </label>
48 </div>
49 </div>
50 </div>
51 <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
52 </body>
53 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698