-
Notifications
You must be signed in to change notification settings - Fork 5
/
feedbackdialog.html
executable file
·52 lines (44 loc) · 1.43 KB
/
feedbackdialog.html
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
<!DOCTYPE html>
<html>
<head>
<link type="text/css" rel="stylesheet" href="styles/dialog.css">
<title></title>
<script src="scripts/feedback.js" type="text/javascript"></script>
</head>
<body>
<!-- User supplied information. -->
<fieldset class="goog-fieldset">
<legend id="user-legend"></legend>
<!-- Free-form user comments. -->
<textarea id="user-text-value" rows="4"></textarea>
</fieldset>
<!-- Static system information. -->
<fieldset class="goog-fieldset">
<legend id="system-legend"></legend>
<!-- Platform. -->
<div class="good-field">
<span id="system-platform-label"
class="goog-settings-label-title"></span>
<span id="system-platform-value"
class="goog-settings-field"></span>
</div>
<!-- User agent. -->
<div class="good-field">
<span id="system-user-agent-label"
class="goog-settings-label-title"></span>
<span id="system-user-agent-value"
class="goog-settings-field"></span>
</div>
</fieldset>
<!-- Privacy notice. -->
<fieldset class="goog-fieldset">
<legend id="privacy-legend"></legend>
<span id="privacy-text" class="goog-settings-field"></span>
</fieldset>
<!-- Buttons. -->
<div class="goog-tabpane-buttons">
<button id="submit-button"></button>
<button id="cancel-button"></button>
</div>
</body>
</html>