generated from hrishikeshrt/jekyll-conference-template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathregistration.html
executable file
·140 lines (133 loc) · 6.23 KB
/
registration.html
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
---
title: Registration
layout: page
slide_id: 6
---
<div class="row mt-xs-0 mt-sm-0 mt-md-1 mt-lg-2 mt-xl-3 mb-xs-2 mb-sm-2">
<div class="col text-justify conference">
<div>
<h4>Registration</h4>
{% if site.data.registration.closed %}
<div class="alert alert-danger rounded text-center mx-3 my-3">
<b class="h5">Registrations are closed.</b>
</div>
{% else %}
{% if site.data.registration.about %}
<p>
{{site.data.registration.about}}
</p>
{% endif %}
{% endif %}
<h4>What's included</h4>
<ul>
<li><strong>Full registration (ACM member/ non member):</strong> The registrants can attend the main
conference and all satellite events (i.e., workshops, tutorials, posters session, and the PhD
symposium). This registration type includes reception, all social events, social dinner, welcome
cocktail, breakfast, lunch, and breaks. During the registration process, the registrant can add up
to 4 additional tickets for his/her guests for the social events.</li>
<li><strong>Full STUDENT registration (ACM member/ non member):</strong> The registrants can attend the
main conference and all satellite events (i.e., workshops, tutorials, poster session, and the PhD
symposium). This registration type includes reception, all social events, social dinner, welcome
cocktail, breakfast, lunch, and breaks. During the registration process, the registrant
<strong>CANNOT</strong> add any additional tickets for his/her guests for the social events.
</li>
<li><strong>Workshops, Tutorials and Posters, WTP (ACM member/ non member):</strong> The registrant can
attend ONLY workshops, tutorials, and the Posters session. This registration type includes
reception, breakfast, lunch, and breaks in the days of the WTP events (3 and 4 June), plus the
participation in the welcome cocktail on 4th June (with the Posters session). This registration type
<strong>DOES NOT</strong> include entrance to the social events and the social dinner. During the
registration process, the registrant <strong>CANNOT</strong> add any tickets for himself or his/her
guests for the social events.
</li>
</ul>
<br>
<h4>Registration Deadlines</h4>
<p> Early: <b>{{site.data.registration.deadline.early}}</b>.<br>
Late: <b>{{site.data.registration.deadline.late}}</b>.<br>
<p><b class="text-warning">Important:</b>
<b><i>We do not offer on-site registration.
All attendees must register online before the deadline.</i></b>
</p>
</p>
<br>
<h4>Registration Prices</h4>
<p><u class="text-info"><b>All prices in the tables below are 22% VAT included.</b></u></p>
<h5>Full Registration</h5>
<table class="table table-bordered table-striped table-hover table-sm">
<tr>
<th>Status</th>
<th>Early</th>
<th>Late</th>
</tr>
{% for r in site.data.registration.full %}
<tr>
<td>{{r.status}}</td>
<td>{{r.early}} €</td>
<td>{{r.late}} €</td>
</tr>
{% endfor %}
</table>
<br>
<h5>Workshops, Tutorials and Posters (WTP) Registration</h5>
<table class="table table-bordered table-striped table-hover table-sm">
<tr>
<th>Status</th>
<th>Early</th>
<th>Late</th>
</tr>
{% for registration in site.data.registration.wtp %}
<tr>
<td>{{registration.status}}</td>
<td>{{registration.early}} €</td>
<td>{{registration.late}} €</td>
</tr>
{% endfor %}
</table>
<br>
<h4>Required type of the registration based on the accepted paper</h4>
<table class="table table-bordered table-striped table-hover table-sm">
<tr>
<th>Accepted paper type</th>
<th>Minimum required registration</th>
</tr>
{% for registration in site.data.registration.required_type %}
<tr>
<td>{{registration.paper_type}}</td>
<td>{{registration.required}}</td>
</tr>
{% endfor %}
</table>
<br>
<h4>Visa</h4>
{% if site.data.registration.visa %}
<p>
{{site.data.registration.visa}}
</p>
{% endif %}
<br>
<h4>Contact</h4>
<p class="text-left">
If you have any problems or questions, please contact us via e-mail at:
<a href="mailto:{{ site.data.registration.email }}">
<i class="fa fa-envelope-o fa-fw" aria-hidden="true"></i>
{{ site.data.registration.email }}
</a>
</p>
<br>
<h4>Registration site</h4>
{% if site.data.registration.closed %}
<div class="alert alert-danger rounded text-center mx-3 my-5">
<b class="h5">Registrations are closed.</b>
</div>
{% else %}
Please click the button below to start the registration process:
<p>
<center>
<button name="button" class="btn btn-success btn-lg shadowedbutton"
onclick="parent.open('{{site.data.registration.url}}')">HPDC Registration Site</button>
</center>
</p>
{% endif %}
</div>
</div>
</div>