-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.php
executable file
·271 lines (256 loc) · 9.78 KB
/
index.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
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
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
<!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'];?>"/>
<meta name="twitter:title" content="<?php echo $META['shortName'];?>"/>
<title>
<?php echo $META['shortName'];?>
</title>
</head>
<body class="home">
<?php require "includes/nav.php"; ?>
<main class="container p-4">
<!-- <p class="alert alert-primary">
<strong>If you are registered, then you will find links on <a href="program.php">the program</a>
for all online activities. We also suggest you read the
<a href="participation.php">participation guidelines</a>
to see what it will be like.</strong>
</p> -->
<!-- NOTE: below is placeholder content. please replace contents with your own content when ready. this content
serves to give you an idea of what the structure of this page has looked like in the past -->
<!-- <p class="alert alert-secondary">
<b>
Due to the coronavirus spread, Eurocrypt 2020 will be
virtual. The dates of this event are (close to) the original
dates: May 11-15 2020.
</b>
</p> -->
<div class="row mb-2">
<article class="col-12">
<p>
<!-- <span class="long_conf"><?php echo $META['shortName'];?></span> will take place
<span class="conf_location"><?php echo $META['city'] . ', ' . $META['country'];?></span>
on <span class="conf_dates"><?php echo $META['dates'];?></span>.-->
<span class="long_conf"><?php echo $META['shortName'];?></span> is the 40th Annual International Conference on the
Theory and Applications of Cryptographic Techniques. Eurocrypt is one of the three flagship conferences of <a href="http://iacr.org/">
the International Association for Cryptologic Research</a> (IACR). </p>
<p>
<span class="conf_name"><?php echo $META['shortName'];?></span> will take place in <span class="conf_location"><?php echo $META['location'];?></span> on <span class="conf_dates"><?php echo $META['dates'];?></span>.
<p class="alert alert-danger"><b>The current situation with COVID-19 does not look promising for having a physical event in May. Hence, the IACR board decided to reschedule the event for Oct. 17-21, 2021, in hopes that in October it will be possible to hold a physical or hybrid event.</b></p>
<a href="callforpapers.php" class="float-right mb-4 btn btn-warning btn-block regBtn w-25 ml-3" role="button">
Call for papers
</a>
</p>
<!-- <p class="editMe">
Please visit the <a href="./callforpapers.php">call for papers</a> page while we work on
adding more information to our other pages. Thank you for your patience.
</p>-->
<!-- TODO: place countdown timer to next session here perhaps? -->
</article>
</div>
<!-- <h2 class="text-center">
Time until Eurocrypt 2020
</h2>
<div id="clockdiv" class="d-flex flex-row justify-content-center">
<div class="p-2 text-center">
<span class="days"></span>
<div class="smalltext">Days</div>
</div>
<div class="p-2 text-center">
<span class="hours"></span>
<div class="smalltext">Hours</div>
</div>
<div class="p-2 text-center">
<span class="minutes"></span>
<div class="smalltext">Minutes</div>
</div>
<div class="p-2 text-center">
<span class="seconds"></span>
<div class="smalltext">Seconds</div>
</div>
</div>
--> <!-- <h3 class="text-center">
You can still <a href="registration.php">register</a>
</h3> -->
<script>
function getTimeRemaining(endtime) {
var t = Date.parse(endtime) - Date.parse(new Date());
var seconds = Math.floor((t / 1000) % 60);
var minutes = Math.floor((t / 1000 / 60) % 60);
var hours = Math.floor((t / (1000 * 60 * 60)) % 24);
var days = Math.floor(t / (1000 * 60 * 60 * 24));
return {
'total': t,
'days': days,
'hours': hours,
'minutes': minutes,
'seconds': seconds
};
}
function initializeClock(id, endtime) {
var clock = document.getElementById(id);
var daysSpan = clock.querySelector('.days');
var hoursSpan = clock.querySelector('.hours');
var minutesSpan = clock.querySelector('.minutes');
var secondsSpan = clock.querySelector('.seconds');
function updateClock() {
var t = getTimeRemaining(endtime);
daysSpan.innerHTML = t.days;
hoursSpan.innerHTML = ('0' + t.hours).slice(-2);
minutesSpan.innerHTML = ('0' + t.minutes).slice(-2);
secondsSpan.innerHTML = ('0' + t.seconds).slice(-2);
if (t.total <= 0) {
clearInterval(timeinterval);
}
}
updateClock();
var timeinterval = setInterval(updateClock, 1000);
}
// var deadline = new Date(Date.parse('2020-05-11T13:00:00Z'));
// initializeClock('clockdiv', deadline);
</script>
<div class="row mt-4">
<div class="col-lg-6">
<?php require "includes/important_dates.php";?>
</div>
<!-- NOTE: Update this to add a row at the top as you add features to the site. -->
<div class="col-lg-6 mt-4 mt-lg-0">
<article class="customCard">
<h4 class="customCardHeader">
Website Updates
</h4>
<div class="customCardRow row">
<h6 class="dateTitle col-5 col-md-4">
October 2 2020
</h6>
<p class="col-7 col-md-8">
<a href="papersubmission.php">Submission</a> server is open
</p>
</div>
<!-- <div class="customCardRow row">
<h6 class="dateTitle col-5 col-md-4">
May 12 2020
</h6>
<p class="col-7 col-md-8">
<a href="rumpprogram.php">Rump session program is available</a>.
</p>
</div>
<div class="customCardRow row">
<h6 class="dateTitle col-5 col-md-4">
May 12 2020
</h6>
<p class="col-7 col-md-8">
<a href="rumpsession.php">Rump session deadline extended</a>.
</p>
</div>
<div class="customCardRow row">
<h6 class="dateTitle col-5 col-md-4">
May 8 2020
</h6>
<p class="col-7 col-md-8">
<a href="rumpsession.php">Rump session call for papers</a> is now online.
</p>
</div>
<div class="customCardRow row">
<h6 class="dateTitle col-5 col-md-4">
April 28 2020
</h6>
<p class="col-7 col-md-8">
<a href="program.php">Tentative program</a> is now online.
</p>
</div>
<div class="customCardRow row">
<h6 class="dateTitle col-5 col-md-4">
April 18 2020
</h6>
<p class="col-7 col-md-8">
Conference website updated for virtual conference. Further details will
appear on new site.
</p>
</div>
<div class="customCardRow row">
<h6 class="dateTitle col-5 col-md-4">
April 7 2020
</h6>
<p class="col-7 col-md-8">
It has been decided that due to the coronavirus spread
Eurocrypt 2020 will be virtual.
</p>
</div>
<div class="customCardRow row">
<h6 class="dateTitle col-5 col-md-4">
February 21 2020
</h6>
<p class="col-7 col-md-8">
<a href="acceptedpapers.php">The list of accepted papers</a> is now online.
</p>
</div>
<div class="customCardRow row">
<h6 class="dateTitle col-5 col-md-4">
February 20 2020
</h6>
<p class="col-7 col-md-8">
<a href="stipends.php">Deadline for student stipend
application (Round II)</a> has been extended.
</p>
</div>
<div class="customCardRow row">
<h6 class="dateTitle col-5 col-md-4">
February 14 2020
</h6>
<p class="col-7 col-md-8">
<a href="stipends.php">Deadline for student stipend
application (Round I)</a> is now closed.
</p>
</div>
<div class="customCardRow row">
<h6 class="dateTitle col-5 col-md-4">
December 12 2019
</h6>
<p class="col-7 col-md-8">
<a href="stipends.php">Deadline for student stipend
application (Round I)</a> is now open
</p>
</div>
<div class="customCardRow row">
<h6 class="dateTitle col-5 col-md-4">
September 10 2019
</h6>
<p class="col-7 col-md-8">
Submission server is now open.
</p>
</div>
<div class="customCardRow row">
<h6 class="dateTitle col-5 col-md-4">
June 21 2019
</h6>
<p class="col-7 col-md-8">
<a href="./callforpapers.php">Call for papers</a> page updated
</p>
</div>
<div class="customCardRow row">
<h6 class="dateTitle col-5 col-md-4">
April 1 2019
</h6>
<p class="col-7 col-md-8">
Call for affiliated events is now open.
</p>
</div>-->
<div class="customCardRow row">
<h6 class="dateTitle col-5 col-md-4">
July 06 2020
</h6>
<p class="col-7 col-md-8">
Website launched
</p>
</div>
</article>
</div>
</div>
</main>
<?php include "includes/footer.php";?>
</body>
</html>