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