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

Side by Side Diff: chrome/browser/resources/options/managed_user_set_passphrase.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: Use setCustomValidity in managed_user_set_passphrase.js. 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 <!-- Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 Use of this source code is governed by a BSD-style license that can be
3 found in the LICENSE file. -->
4 <div id="managed-user-set-passphrase-overlay" class="page" hidden>
5 <div class="close-button"></div>
6 <h1 i18n-content="setPassphraseTitle"></h1>
7 <div class="content-area">
8 <div>
9 <span i18n-content="setPassphraseInstructions"></span>
Bernhard Bauer 2013/02/05 12:52:23 You could set the i18n-content property directly o
Adrian Kuegel 2013/02/05 13:21:05 Done.
10 </div>
11 <div class="managed-user-passphrase-container">
12 <input id="managed-user-passphrase" type="password" align="center"
Bernhard Bauer 2013/02/05 12:52:23 What's the align=center for? Could you do that in
Adrian Kuegel 2013/02/05 13:21:05 I think that was some temporary test, it is not ne
13 i18n-values=".placeholder:enterPassphrase" required>
14 </div>
15 <div class="managed-user-passphrase-container">
16 <input id="passphrase-confirm" class="equal_passphrases" type="password"
17 align="center" i18n-values=".placeholder:confirmPassphrase" required>
18 </div>
19 <div id="passphrase-mismatch" hidden>
20 <span i18n-content="passphraseMismatch"></span>
21 </div>
22 <div>
23 <button id="save-passphrase" i18n-content="savePassphrase" disabled>
24 </button>
25 </div>
26 </div>
27 </div>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698