Skip to content

Commit c2baf37

Browse files
committed
Add coc reporting
1 parent 4f580f4 commit c2baf37

File tree

1 file changed

+47
-0
lines changed

1 file changed

+47
-0
lines changed

events/report/index.html

Lines changed: 47 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
1+
---
2+
layout: page
3+
title: Report code of conduct violations
4+
---
5+
6+
<section>
7+
<p>We take our code of conduct seriously. We also respect your choice to report anonymously. Please include as many details as possible so that we may address the situation. Thank you for helping to keep these events inclusive!</p>
8+
</section>
9+
10+
<section>
11+
<form
12+
name="report-coc-violation"
13+
action="/"
14+
class="form-stacked"
15+
netlify-honeypot="bot-field"
16+
netlify
17+
>
18+
<div class="row uniform">
19+
<div class="6u 12u$(xsmall)">
20+
<input type="text" name="name" id="name" value="" placeholder="Name" />
21+
</div>
22+
<div class="12u$">
23+
<textarea
24+
name="message"
25+
id="message"
26+
placeholder="Enter violation details here..."
27+
rows="6"
28+
></textarea>
29+
</div>
30+
<div class="12u$">
31+
<ul class="actions">
32+
<li><input type="submit" value="Send Message" class="special" /></li>
33+
<li><input type="reset" value="Reset" /></li>
34+
</ul>
35+
</div>
36+
</div>
37+
</form>
38+
</section>
39+
40+
<script>
41+
window.onload = function() {
42+
const myInput = document.getElementById("message");
43+
myInput.onpaste = function(e) {
44+
e.preventDefault();
45+
};
46+
};
47+
</script>

0 commit comments

Comments
 (0)