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