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 <script src="base.js"></script> | |
17 <script src="error.js"></script> | |
18 <script src="feedback_consent.js"></script> | |
19 <script src="oauth2_api_impl.js"></script> | |
20 <script src="plugin_settings.js"></script> | |
21 <script src="l10n.js"></script> | |
22 <script src="xhr.js"></script> | |
23 <title i18n-content="FEEDBACK_CONSENT_TITLE"></title> | |
24 </head> | |
25 <body> | |
26 <h2 i18n-content="FEEDBACK_CONSENT_TITLE"></h2> | |
27 <p i18n-content="FEEDBACK_CONSENT" | |
28 class="message"></p> | |
29 <div id="form-body"> | |
30 <label class="checkbox-label" | |
31 id="abandon-host-label"> | |
32 <input id="abandon-host" | |
33 type="checkbox"> | |
34 <span i18n-content="FEEDBACK_ABANDON_HOST"></span> | |
35 </label> | |
36 <label class="checkbox-label checkbox-indent disabled" | |
37 id="include-logs-label"> | |
38 <input id="include-logs" | |
39 type="checkbox" | |
40 disabled> | |
41 <span i18n-content="FEEDBACK_INCLUDE_LOGS"></span> | |
42 <a id="learn-more" | |
43 i18n-content="LEARN_MORE" | |
44 class="disabled"></a> | |
45 </label> | |
46 <div id="privacy-info" | |
47 class="information-box" | |
48 hidden> | |
49 <p i18n-content="FEEDBACK_PRIVACY_INFORMATION1"></p> | |
50 <p i18n-content="FEEDBACK_PRIVACY_INFORMATION2"></p> | |
51 </div> | |
52 </div> <!-- form-body --> | |
53 <div id="abandon-failed" | |
54 class="message error-state multi-line-error-state" | |
55 i18n-content="FEEDBACK_ABANDON_FAILED" | |
56 hidden></div> | |
57 <div class="button-row"> | |
58 <span id="working" | |
59 class="waiting" | |
60 i18n-content="WORKING" | |
61 hidden></span> | |
62 <button id="feedback-consent-ok" | |
63 i18n-content="OK" | |
64 autofocus="autofocus"></button> | |
65 <button id="feedback-consent-cancel" | |
66 i18n-content="CANCEL"></button> | |
67 </div> | |
68 </body> | |
69 </html> | |
OLD | NEW |