OLD | NEW |
---|---|
(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> | |
OLD | NEW |