Register
Login
Resources
Docs Blog Datasets Glossary Case Studies Tutorials & Webinars
Product
Data Engine LLMs Platform Enterprise
Pricing Explore
Connect to our Discord channel

survey.html 2.8 KB

You have to be logged in to leave a comment. Sign In
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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
  1. {% unless enterpriseServerReleases.isOldestReleaseDeprecated and currentVersion contains enterpriseServerReleases.oldestSupported %}
  2. <form class="js-survey f5">
  3. <h2
  4. data-help-start
  5. data-help-yes
  6. data-help-no
  7. class="mb-1 f4"
  8. >
  9. {% data ui.survey.able_to_find %}
  10. <a
  11. class="f6 text-normal ml-3 color-text-link"
  12. href="/github/site-policy/github-privacy-statement"
  13. target="_blank"
  14. >{% data ui.survey.privacy_policy %}</a>
  15. </h2>
  16. <p
  17. class="radio-group"
  18. data-help-start
  19. data-help-yes
  20. data-help-no
  21. >
  22. <input
  23. hidden
  24. id="survey-yes"
  25. type="radio"
  26. name="survey-vote"
  27. value="Yes"
  28. aria-label="{% data ui.survey.yes %}"
  29. />
  30. <label class="btn x-radio-label" for="survey-yes">
  31. {% octicon "thumbsup" height="24" %}
  32. </label>
  33. <input
  34. hidden
  35. id="survey-no"
  36. type="radio"
  37. name="survey-vote"
  38. value="No"
  39. aria-label="{% data ui.survey.no %}"
  40. />
  41. <label class="btn x-radio-label" for="survey-no">
  42. {% octicon "thumbsdown" height="24" %}
  43. </label>
  44. </p>
  45. <p class="color-text-secondary f6" hidden data-help-yes>
  46. {% data ui.survey.yes_feedback %}
  47. </p>
  48. <p class="color-text-secondary f6" hidden data-help-no>
  49. {% data ui.survey.no_feedback %}
  50. </p>
  51. <input
  52. type="text"
  53. class="d-none"
  54. name="survey-token"
  55. aria-hidden="true"
  56. />
  57. <p hidden data-help-yes data-help-no>
  58. <label
  59. class="d-block mb-1 f6"
  60. for="survey-comment"
  61. >
  62. <span hidden data-help-yes>{% data ui.survey.comment_yes_label %}</span>
  63. <span hidden data-help-no>{% data ui.survey.comment_no_label %}</span>
  64. <span class="text-normal color-text-tertiary float-right ml-1">
  65. {% data ui.survey.optional %}
  66. </span>
  67. </label>
  68. <textarea
  69. class="form-control input-sm width-full"
  70. name="survey-comment"
  71. id="survey-comment"
  72. ></textarea>
  73. </p>
  74. <p hidden data-help-yes data-help-no>
  75. <label
  76. class="d-block mb-1 f6"
  77. for="survey-email"
  78. >
  79. {% data ui.survey.email_label %}
  80. <span class="text-normal color-text-tertiary float-right ml-1">
  81. {% data ui.survey.optional %}
  82. </span>
  83. </label>
  84. <input
  85. type="email"
  86. class="form-control input-sm width-full"
  87. name="survey-email"
  88. id="survey-email"
  89. placeholder="{% data ui.survey.email_placeholder %}"
  90. />
  91. <span class="f6 color-text-secondary">{% data ui.survey.not_support %}</span>
  92. </p>
  93. <p
  94. class="text-right"
  95. hidden
  96. data-help-yes
  97. data-help-no
  98. >
  99. <button type="submit" class="btn btn-sm">
  100. {% data ui.survey.send %}
  101. </button>
  102. </p>
  103. <p class="color-text-secondary f6" hidden data-help-end>
  104. {% data ui.survey.feedback %}
  105. </p>
  106. </form>
  107. {% endunless %}
Tip!

Press p or to see the previous file or, n or to see the next file

Comments

Loading...