-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconduct.php
executable file
·103 lines (94 loc) · 3.74 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
96
97
98
99
100
101
102
103
<!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>
Code of Conduct for <?php echo $META['shortName'];?>
</title>
</head>
<body>
<?php require "includes/nav.php"; ?>
<main class="container p-4">
<h2 class="indPageTitle">
Code of Conduct
</h2>
<!-- NOTE: the following is required text for the code of
conduct. Any text that is inside <span class="editMe"> is
text that MUST be changed by the general chair or whoever is
responsible for the conference website -->
<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>, <a href="./contact.php">General Chair(s)</a>,
any member of the <a href="https://iacr.org/committees.html#ethics">Ethics
Committee</a>, and
the <a href="https://iacr.org/bod.html">President</a>.
</p>
<p>
Special rules apply for online conferences. We require that
every participant in an online conference represent themselves
by the name that they use for their professional work. In
addition, any speech or imagery that are posted in the chats
of the various conference activities must be appropriate.
</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-md-4 mb-4 mb-md-2">
<h4 class="subSubtitle">
Tal Rabin<br>
<small>Code-of-Conduct Liaison</small>
</h4>
<a href="mailto:[email protected]">
<img src="images/icons/email.svg" class="icon" /> <img src="images/contacts/cond.jpg">
</a>
</aside>
<aside class="col-md-4 mb-4 mb-md-2">
<h4 class="subSubtitle">
Shai Halevi<br>
<small>Ethics Committee Chair</small><br>
</h4>
<p class="w-75">
<a href="https://iacr.org/committees.html#ethics">Other committee members</a> include Lejla Batina, Nadia Heninger, Anna Lysyanskaya, and Bart Preneel
</p>
<a href="mailto:[email protected]">
<img src="images/icons/email.svg" class="icon" /> <img src="images/contacts/ethcom.jpg">
</a>
</aside>
<aside class="col-md-4">
<h4 class="subSubtitle">
Michel Abdalla<br>
<small>IACR President</small>
</h4>
<a href="mailto:[email protected]">
<img src="images/icons/email.svg" class="icon" /> <img src="images/contacts/pres.jpg">
</a>
</aside>
</div>
</main>
<?php include "includes/footer.php"; ?>
</body>
</html>