-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconduct.html
More file actions
143 lines (136 loc) · 5.94 KB
/
conduct.html
File metadata and controls
143 lines (136 loc) · 5.94 KB
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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
<!doctype html>
<html>
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>TBH</title>
<link rel="icon" href="tbh-logo.ico" />
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="./css/bootstrap-5.0.2.css" />
<link rel="stylesheet" href="./css/custom-styles.css" />
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/[email protected]/font/bootstrap-icons.css"
/>
<!-- JS -->
<script
src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/2.9.2/umd/popper.min.js"
integrity="sha512-2rNj2KJ+D8s1ceNasTIex6z4HWyOnEYLVC3FigGOmyQCZc2eBXKgOxQmo3oKLHyfcj53uz4QMsRCWNbLd32Q1g=="
crossorigin="anonymous"
referrerpolicy="no-referrer"
></script>
<script
src="https://cdnjs.cloudflare.com/ajax/libs/bootstrap/5.0.2/js/bootstrap.min.js"
integrity="sha512-a6ctI6w1kg3J4dSjknHj3aWLEbjitAXAjLDRUxo2wyYmDFRcz2RJuQr5M3Kt8O/TtUSp8n2rAyaXYy1sjoKmrQ=="
crossorigin="anonymous"
referrerpolicy="no-referrer"
></script>
</head>
<body>
<div id="tbh-nav"></div>
<div class="jumbotron-conduct">
<h1 class="display-5 mx-5 mt-5">Code of Conduct</h1>
</div>
<div class="container my-4 col-lg-9 mx-auto col-12 sponsor-body">
<div class="row">
<div class="col-12 mb-2 sponsor-body">
<p class="text-center pt-5 pb-4">
We are committed to organizing an enjoyable experience for all our
participants. This is essential for fostering a community that is
welcoming and inclusive. Discrimination and/or harassment on the
basis of any kind will therefore not be tolerated. By participating
in this hackathon, you agree to abide by this Code of Conduct.
</p>
<div class="col-12 text-left">
<h3 class="text-center pt-5 pb-2">Our Principles</h3>
<p class="mt-3 mb-2 fs-5">
<strong>Respect and Inclusivity: </strong>We are committed to
providing a positive and inclusive experience for everyone,
regardless of gender, gender identity and expression, sexual
orientation, disability, physical appearance, body size, race,
age, or religion.
</p>
<p class="mt-3 mb-2 fs-5">
<strong>Open Communication: </strong>Foster a community where
everyone feels comfortable sharing their ideas and opinions
without fear of harassment or criticism. Constructive feedback is
encouraged, but it should be delivered with respect.
</p>
<p class="mt-3 mb-2 fs-5">
<strong>Collaboration and Support: </strong>Encourage
collaboration and help others whenever possible. Our collective
goal is to innovate and learn together.
</p>
<h3 class="text-center pt-5 pb-2">Unacceptable Behavior</h3>
<p class="mt-3 mb-2 fs-5">
<strong>Harassment and Bullying: </strong>This includes offensive
verbal comments, sexual images in public spaces, deliberate
intimidation, stalking, following, harassing photography or
recording, sustained disruption of events, inappropriate physical
contact, and unwelcome sexual attention.
</p>
<p class="mt-3 mb-2 fs-5">
<strong>Exclusionary Behavior: </strong>Discouraging or excluding
others from participating in discussions, projects, or social
activities based on their personal attributes or choices.
</p>
<p class="mt-3 mb-2 fs-5">
<strong>Dishonesty: </strong>Plagiarism, unauthorized use of
others' code or ideas, and other forms of cheating are strictly
prohibited.
</p>
<div class="text-left pt-5 pb-2 fs-5">
<p>
If you witness or experience any behavior that violates this
code, please report it immediately. You can contact hackathon
staff in person, through the
<a href="contact.html">contact form</a> on our website, or by
emailing
<a href="mailto:[email protected]"
>.
</p>
<p class="pt-4">
We value the safety and well-being of our participants. All
reports will be taken seriously and handled with respect and
discretion.
</p>
<p class="py-4">
Participants asked to stop any harassing behavior are expected
to comply immediately. Violating these rules may result in the
perpetrating participant being asked to leave the event at the
sole discretion of the event organizers.
</p>
</div>
</div>
</div>
</div>
<div id="footer"></div>
<!-- Load navigation menu -->
<script>
var xhttp_nav = new XMLHttpRequest();
xhttp_nav.onreadystatechange = function () {
if (this.readyState == 4 && this.status == 200) {
document.getElementById("tbh-nav").innerHTML =
xhttp_nav.responseText;
}
};
xhttp_nav.open("GET", "./nav.html", true);
xhttp_nav.send();
</script>
<!-- Load footer -->
<script>
var xhttp_footer = new XMLHttpRequest();
xhttp_footer.onreadystatechange = function () {
if (this.readyState == 4 && this.status == 200) {
document.getElementById("footer").innerHTML =
xhttp_footer.responseText;
}
};
xhttp_footer.open("GET", "./footer.html", true);
xhttp_footer.send();
</script>
</div>
</body>
</html>