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 225 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
236 | 236 |
237 <ul> | 237 <ul> |
238 <li><span class="status cert-csr">Send Signing Request.</span> | 238 <li><span class="status cert-csr">Send Signing Request.</span> |
239 <li><span class="status cert-request">Request Certificate.</span> | 239 <li><span class="status cert-request">Request Certificate.</span> |
240 <li><span class="status cert-install">Configure Network.</span> | 240 <li><span class="status cert-install">Configure Network.</span> |
241 </ul> | 241 </ul> |
242 </div> | 242 </div> |
243 </div> | 243 </div> |
244 | 244 |
245 <center> | 245 <center> |
246 <h1>Enterprise policy options</h1> | 246 <!-- This onclick handler can be useful for testing, when you want |
| 247 -- to reload the page with the "search" portion of document.location |
| 248 -- cleared. |
| 249 --> |
| 250 <h1 onclick="document.location.href = document.location.pathname" |
| 251 >Enterprise policy options</h1> |
247 </center> | 252 </center> |
248 | 253 |
249 <div class="content"> | 254 <div class="content"> |
250 <ul class="object-list" id="overview-list"> | 255 <ul class="object-list" id="overview-list"> |
251 <li> | 256 <li> |
252 <table width="100%"> | 257 <table width="100%"> |
253 <tr> | 258 <tr> |
254 <td class="label">Policy</td> | 259 <td class="label">Policy</td> |
255 <td id="policy-status">Unknown</td> | 260 <td id="policy-status">Unknown</td> |
256 <td class="label">Daemon</td> | 261 <td class="label">Daemon</td> |
(...skipping 19 matching lines...) Expand all Loading... |
276 | 281 |
277 <h2>Certificates</h2> | 282 <h2>Certificates</h2> |
278 <ul class="object-list" id="cert-list"> | 283 <ul class="object-list" id="cert-list"> |
279 <!-- client.js will populate this with the known certs --> | 284 <!-- client.js will populate this with the known certs --> |
280 <li><center>Waiting for response</center></li> | 285 <li><center>Waiting for response</center></li> |
281 </ul> | 286 </ul> |
282 </div> | 287 </div> |
283 </div> | 288 </div> |
284 </body> | 289 </body> |
285 </html> | 290 </html> |
OLD | NEW |