| OLD | NEW |
| 1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
| 2 <!-- Copyright (c) 2010 The Chromium OS Authors. All rights reserved. | 2 <!-- Copyright (c) 2010 The Chromium OS 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 --> | 5 --> |
| 6 <html> | 6 <html> |
| 7 <head> | 7 <head> |
| 8 <script src="jquery-1.4.2.min.js"></script> | 8 <script src="jquery-1.4.2.min.js"></script> |
| 9 <script src="util.js"></script> | 9 <script src="util.js"></script> |
| 10 <script src="client.js"></script> | 10 <script src="client.js"></script> |
| (...skipping 192 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 203 <div style="height:2em"> | 203 <div style="height:2em"> |
| 204 <div class="dialog-buttons"> | 204 <div class="dialog-buttons"> |
| 205 <input type="submit" value="Submit"> | 205 <input type="submit" value="Submit"> |
| 206 <button onclick="client.onCertCancel_(); return false" | 206 <button onclick="client.onCertCancel_(); return false" |
| 207 >Cancel</button> | 207 >Cancel</button> |
| 208 </div> | 208 </div> |
| 209 </div> | 209 </div> |
| 210 </form> | 210 </form> |
| 211 </div> | 211 </div> |
| 212 | 212 |
| 213 <!-- TODO(crosbug.com/14277): Remove initialization UI. --> |
| 213 <div class="modal-dialog" id="token-status"> | 214 <div class="modal-dialog" id="token-status"> |
| 214 <b>Initializing PKCS#11 Token</b> | 215 <b>Initializing PKCS#11 Token</b> |
| 215 <hr> | 216 <hr> |
| 216 Please wait while the PKCS#11 Token | 217 Please wait while the PKCS#11 Token |
| 217 “<span id="token-desc"></span>” in slot | 218 “<span id="token-desc"></span>” in slot |
| 218 <span id="token-slot"></span> is initialized... | 219 <span id="token-slot"></span> is initialized... |
| 219 | 220 |
| 220 <ul> | 221 <ul> |
| 221 <li><span class="status token-init">Initialize token.</span> | 222 <li><span class="status token-init">Initialize token.</span> |
| 222 <li><span class="status token-so">Reset Security Officer PIN.</span> | 223 <li><span class="status token-so">Reset Security Officer PIN.</span> |
| (...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 283 | 284 |
| 284 <h2>Certificates</h2> | 285 <h2>Certificates</h2> |
| 285 <ul class="object-list" id="cert-list"> | 286 <ul class="object-list" id="cert-list"> |
| 286 <!-- client.js will populate this with the known certs --> | 287 <!-- client.js will populate this with the known certs --> |
| 287 <li><center>Waiting for response</center></li> | 288 <li><center>Waiting for response</center></li> |
| 288 </ul> | 289 </ul> |
| 289 </div> | 290 </div> |
| 290 </div> | 291 </div> |
| 291 </body> | 292 </body> |
| 292 </html> | 293 </html> |
| OLD | NEW |