1 <!-- 2 Copyright (c) 2014 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 --> 6 <div id="paired-client-manager-dialog" 7 class="kd-modaldialog" 8 data-ui-mode="home.manage-pairings" 9 hidden> 10 11 <p i18n-content="PAIRED_CLIENTS_INTRODUCTION" 12 class="message"> 13 </p> 14 15 <div id="paired-clients-list"> 16 <table> 17 <thead> 18 <tr> 19 <td i18n-content="PAIRED_CLIENT_DATE"></td> 20 <td i18n-content="PAIRED_CLIENT_NAME"></td> 21 </tr> 22 </thead> 23 <tbody> 24 </tbody> 25 </table> 26 <p id="no-paired-clients"> 27 <em i18n-content="NO_PAIRED_CLIENTS"></em> 28 </p> 29 </div> <!-- paired-clients-list --> 30 31 <p id="paired-client-manager-dialog-error" 32 class="error-state" 33 hidden> 34 </p> 35 36 <div class="button-row"> 37 <span id="paired-client-manager-dialog-working" 38 class="waiting" 39 i18n-content="WORKING" 40 hidden></span> 41 <button id="delete-all-paired-clients" 42 i18n-content="DELETE_ALL_PAIRED_CLIENTS"> 43 </button> 44 <button id="close-paired-client-manager-dialog" 45 i18n-content="CLOSE"> 46 </button> 47 </div> 48 49 </div> <!-- home.manage-pairings --> 50