| OLD | NEW |
| (Empty) |
| 1 <!doctype html> | |
| 2 <!-- | |
| 3 Copyright 2014 The Chromium Authors. All rights reserved. | |
| 4 Use of this source code is governed by a BSD-style license that can be | |
| 5 found in the LICENSE file. | |
| 6 --> | |
| 7 | |
| 8 <html> | |
| 9 <head> | |
| 10 <meta charset="utf-8"> | |
| 11 <link rel="icon" type="image/png" href="/icon16.png"> | |
| 12 <link rel="stylesheet" href="open_sans.css"> | |
| 13 <link rel="stylesheet" href="feedback_consent.css"> | |
| 14 <link rel="stylesheet" href="main.css"> | |
| 15 <link rel="stylesheet" href="message_window.css"> | |
| 16 | |
| 17 <meta-include type="javascript"/> | |
| 18 | |
| 19 <title i18n-content="FEEDBACK_CONSENT_TITLE"></title> | |
| 20 </head> | |
| 21 <body> | |
| 22 <h2 i18n-content="FEEDBACK_CONSENT_TITLE"></h2> | |
| 23 <p i18n-content="FEEDBACK_CONSENT_EMAIL" | |
| 24 class="message"></p> | |
| 25 <p i18n-content="FEEDBACK_CATEGORY_INSTRUCTIONS"></p> | |
| 26 <select id="feedback-category"> | |
| 27 <option i18n-content="FEEDBACK_CATEGORY_SELECT"></option> | |
| 28 <option i18n-content="FEEDBACK_CATEGORY_APP_LAUNCH"></option> | |
| 29 <option i18n-content="FEEDBACK_CATEGORY_APP_PERFORMANCE"></option> | |
| 30 <option i18n-content="FEEDBACK_CATEGORY_INPUT"></option> | |
| 31 <option i18n-content="FEEDBACK_CATEGORY_DRIVE_UPLOAD"></option> | |
| 32 <option i18n-content="FEEDBACK_CATEGORY_DRIVE_DOWNLOAD"></option> | |
| 33 <option i18n-content="FEEDBACK_CATEGORY_OTHER"></option> | |
| 34 </select> | |
| 35 <div id="form-body" hidden> | |
| 36 <label class="checkbox-label" | |
| 37 id="abandon-host-label"> | |
| 38 <input id="abandon-host" | |
| 39 type="checkbox"> | |
| 40 <span i18n-content="FEEDBACK_ABANDON_HOST"></span> | |
| 41 </label> | |
| 42 <label class="checkbox-label checkbox-indent disabled" | |
| 43 id="include-logs-label"> | |
| 44 <input id="include-logs" | |
| 45 type="checkbox" | |
| 46 disabled> | |
| 47 <span i18n-content="FEEDBACK_INCLUDE_LOGS"></span> | |
| 48 <a id="learn-more" | |
| 49 i18n-content="LEARN_MORE" | |
| 50 class="disabled"></a> | |
| 51 </label> | |
| 52 <div id="privacy-info" | |
| 53 class="information-box" | |
| 54 hidden> | |
| 55 <p i18n-content="FEEDBACK_PRIVACY_INFORMATION1"></p> | |
| 56 <p i18n-content="FEEDBACK_PRIVACY_INFORMATION2"></p> | |
| 57 </div> | |
| 58 </div> <!-- form-body --> | |
| 59 <div id="abandon-failed" | |
| 60 class="message error-state multi-line-error-state" | |
| 61 i18n-content="FEEDBACK_ABANDON_FAILED" | |
| 62 hidden></div> | |
| 63 <div class="button-row"> | |
| 64 <span id="working" | |
| 65 class="waiting" | |
| 66 i18n-content="WORKING" | |
| 67 hidden></span> | |
| 68 <button id="feedback-consent-ok" | |
| 69 i18n-content="OK" | |
| 70 autofocus="autofocus" | |
| 71 disabled></button> | |
| 72 <button id="feedback-consent-cancel" | |
| 73 i18n-content="CANCEL"></button> | |
| 74 </div> | |
| 75 </body> | |
| 76 </html> | |
| OLD | NEW |