Home | History | Annotate | Download | only in options
      1 <div id="manage-profile-overlay" class="page" hidden>
      2   <div class="close-button"></div>
      3   <!-- Dialog for managing profiles. -->
      4   <div id="manage-profile-overlay-manage" hidden>
      5     <h1 i18n-content="manageProfile"></h1>
      6     <div id="manage-profile-content" class="content-area">
      7       <div id="manage-profile-icon-label"
      8           i18n-content="manageProfilesIconLabel">
      9       </div>
     10       <grid id="manage-profile-icon-grid"></grid>
     11       <div id="manage-profile-name-input-container">
     12         <label>
     13           <span id="manage-profile-name-label" for="manage-profile-name"
     14               i18n-content="manageProfilesNameLabel">
     15           </span>
     16           <input id="manage-profile-name" type="text" required>
     17         </label>
     18       </div>
     19       <div id="manage-profile-error-bubble" hidden></div>
     20     </div>
     21     <div class="action-area">
     22       <div class="action-area-shortcut-container">
     23         <button id="remove-shortcut-button"
     24             i18n-content="removeProfileShortcutButton" hidden>
     25         </button>
     26         <button id="add-shortcut-button"
     27             i18n-content="createProfileShortcutButton" hidden>
     28         </button>
     29       </div>
     30       <div class="button-strip">
     31         <button id="manage-profile-cancel" i18n-content="cancel"></button>
     32         <button id="manage-profile-ok" i18n-content="ok"
     33             class="default-button"></button>
     34       </div>
     35     </div>
     36   </div>
     37   <!-- Dialog for deleting profiles. -->
     38   <div id="manage-profile-overlay-delete" hidden>
     39     <h1 i18n-content="deleteProfileTitle"></h1>
     40     <div class="content-area">
     41       <div id="delete-profile-message"></div>
     42       <div id="delete-managed-profile-addendum"
     43           i18n-values=".innerHTML:deleteManagedProfileAddendum" hidden>
     44       </div>
     45     </div>
     46     <div class="action-area button-strip">
     47       <button id="delete-profile-cancel" i18n-content="cancel"></button>
     48       <button id="delete-profile-ok" class="default-button"
     49           i18n-content="deleteProfileOK"></button>
     50     </div>
     51   </div>
     52   <!-- Dialog for creating profiles. -->
     53   <div id="manage-profile-overlay-create" hidden>
     54     <h1 i18n-content="createProfileTitle"></h1>
     55     <div id="create-profile-content" class="content-area">
     56       <div id="create-profile-instructions"></div>
     57       <grid id="create-profile-icon-grid"></grid>
     58       <div id="create-profile-name-input-container">
     59         <label>
     60           <span id="create-profile-name-label" for="create-profile-name"
     61               i18n-content="manageProfilesNameLabel">
     62           </span>
     63           <input id="create-profile-name" type="text" required>
     64         </label>
     65       </div>
     66       <div id="create-profile-error-bubble" hidden></div>
     67     </div>
     68     <div class="content-area">
     69       <div id="create-shortcut-container" class="checkbox" hidden>
     70         <label>
     71           <input id="create-shortcut" type="checkbox">
     72           <span for="create-shortcut"
     73               i18n-content="createProfileShortcutCheckbox">
     74           </span>
     75         </label>
     76       </div>
     77       <div id="create-profile-managed-container" class="checkbox" hidden>
     78         <label>
     79           <input id="create-profile-managed" type="checkbox">
     80           <span id="create-profile-managed-signed-in">
     81             <span id="create-profile-managed-signed-in-label"></span>
     82             <span id="create-profile-managed-account-details-out-of-date-label"
     83                 hidden>
     84             </span>
     85             <button id="create-profile-managed-signed-in-learn-more-link"
     86                 class="link-button" i18n-content="learnMore">
     87             </button>
     88             <button id="create-profile-managed-sign-in-again-link"
     89                 class="link-button"
     90                 i18n-content="manageProfilesManagedSignInAgainLink" hidden>
     91             </button>
     92           </span>
     93           <span id="create-profile-managed-not-signed-in" hidden>
     94             <span id="create-profile-managed-not-signed-in-label"
     95                 i18n-content="manageProfilesManagedNotSignedInLabel">
     96             </span>
     97             <button id="create-profile-managed-not-signed-in-link"
     98                 class="link-button"
     99                 i18n-content="manageProfilesManagedNotSignedInLink">
    100             </button>
    101           </span>
    102         </label>
    103         <label>
    104           <span id="select-existing-managed-profile">
    105             <input id="select-existing-managed-profile-checkbox"
    106                 type="checkbox">
    107             <span id="select-existing-managed-profile-label"
    108                 for="select-existing-managed-profile-checkbox"
    109                 i18n-content="manageProfilesSelectExistingManagedProfileLabel">
    110             </span>
    111           </span>
    112         </label>
    113         <label>
    114           <select id="choose-existing-managed-profile">
    115           </select>
    116         </label>
    117         <span id="create-profile-managed-indicator"
    118             class="bubble-button controlled-setting-indicator">
    119         </span>
    120       </div>
    121     </div>
    122     <div class="action-area">
    123       <div id="create-profile-throbber" class="throbber"></div>
    124       <div class="button-strip">
    125         <button id="create-profile-cancel" i18n-content="cancel"></button>
    126         <button id="create-profile-ok" i18n-content="createProfileConfirm"
    127             class="default-button">
    128         </button>
    129       </div>
    130     </div>
    131   </div>
    132 </div>
    133