-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathconduct.php
executable file
·95 lines (83 loc) · 2.58 KB
/
conduct.php
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
<!DOCTYPE html>
<html lang="en">
<head>
<?php // The header includes the head tag and start of body
require "includes/head.php";
?>
<meta property="og:title" content="<?php echo $META['shortName']; ?> code of conduct" />
<meta name="twitter:title" content="<?php echo $META['shortName']; ?> code of conduct" />
<title>
<?php echo $META['shortName']; ?> Code of Conduct
</title>
</head>
<body>
<?php require "includes/nav.php"; ?>
<main class="container">
<h2 class="indPageTitle">
Code of Conduct
</h2>
<p>
The IACR is committed to providing an experience free of
harassment and discrimination in its events, respecting the
dignity of every participant.
</p>
<p>
If you experience harassment or discriminatory behavior at an
IACR event, we encourage you to reach out to someone who could
help. The following are available to you:
the <a href="https://iacr.org/committees.html">Code-of-Conduct
Liaison</a>, the <a href="contact.php">conference general chair(s)</a>,
any member of the <a href="ethics-committee@iacr.org">IACR ethics
committee</a>, and
the <a href="https://iacr.org/bod.html">IACR president</a>.
</p>
<p>
Participants who violate this code may be sanctioned and/or
expelled from the event, at the discretion of the General
Chair(s). Serious incidents may be referred to the Ethics
Committee for further possible action. Any action will only be
taken with the consent of the complaining
party.
</p>
<p>
If you witness harassment or discriminatory behavior, please consider intervening.
</p>
<h3 class="pageSubtitle mt-4">
Who to contact
</h3>
<div class="row">
<aside class="col-sm-4">
<h4 class="subSubtitle">
Code-of-Conduct Liaison
</h4>
<p class="text-start">
<a href="https://iacr.org/committees.html">
NAME & CONTACT
</a>
</p>
</aside>
<aside class="col-sm-4">
<h4 class="subSubtitle">
Ethics Committee
</h4>
<p class="text-start">
<a href="https://iacr.org/committees.html">
NAME & CONTACT
</a>
</p>
</aside>
<aside class="col-sm-4">
<h4 class="subSubtitle">
IACR President
</h4>
<p class="text-start">
<a href="https://iacr.org/bod.html">
NAME & CONTACT
</a>
</p>
</aside>
</div>
</main>
<?php include "includes/footer.php"; ?>
</body>
</html>