-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathregistration.html
93 lines (80 loc) · 2.95 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
---
layout: default
title: "Register Now"
group: Author Information
registrations:
early:
- type: Conference Only
price: [750, 925, 350]
- type: Conference + Workshop
price: [900, 1175, 400]
- type: Workshop Only
price: [350, 450, 200]
- type: One-Day Registration (Conference)
price: [350, 450, 200]
late:
- type: Conference Only
price: [850, 1025, 450]
- type: Conference + Workshop
price: [1000, 1275, 500]
- type: Workshop Only
price: [400, 500, 250]
- type: One-Day Registration (Conference)
price: [400, 500, 250]
---
<h1>Registration</h1>
<h2>A Special Note on Author Registration Policy</h2>
<p>Each accepted paper/poster must be presented by one of its author(s) at the MobiHoc main conference or workshop.</p>
<p>To present a paper/poster at the conference or any one of the workshops, at least one author should register at the full (non-student) rates.</p>
<p>All cancellation and refund requests must be submitted in writing and emailed to the Registration Chair, Gaia Maselli,
<a href="mailto:[email protected]">[email protected]</a> by
Tuesday, 18 June 2019. There will be an administrative fee of 100 Euro deducted from each refund.</p>
<p> </p>
<div class="row">
<div class="col-sm-6 col-sm-offset-3">
<a href="http://www.cvent.com/d/g6qrbh/4W" class="btn btn-primary btn-block" role="button">>> Register Now <<</a>
</div>
</div>
<p> </p>
<div class="list-group condensed">
<div class="list-group-item active">Early Registration (Ending on June 2, 2019)</div>
<div class="list-group-item">
<div class="row">
<div class="col-md-3"><b>Event</b></div>
<div class="col-md-3"><b>ACM/SIG Member</b></div>
<div class="col-md-3"><b>Non-Member</b></div>
<div class="col-md-3"><b>Student</b></div>
</div>
</div>
{% for reg in page.registrations.early %}
<div class="list-group-item">
<div class="row">
<div class="col-md-3">{{ reg.type }}</div>
<div class="col-md-3">{{ reg.price[0] }} Euro</div>
<div class="col-md-3">{{ reg.price[1] }} Euro</div>
<div class="col-md-3">{{ reg.price[2] }} Euro</div>
</div>
</div>
{% endfor %}
</div>
<div class="list-group">
<div class="list-group-item active">Late Registration (Starting on Jun 3, 2019)</div>
<div class="list-group-item">
<div class="row">
<div class="col-md-3"><b>Event</b></div>
<div class="col-md-3"><b>ACM/SIG Member</b></div>
<div class="col-md-3"><b>Non-Member</b></div>
<div class="col-md-3"><b>Student</b></div>
</div>
</div>
{% for reg in page.registrations.late %}
<div class="list-group-item">
<div class="row">
<div class="col-md-3">{{ reg.type }}</div>
<div class="col-md-3">{{ reg.price[0] }} Euro</div>
<div class="col-md-3">{{ reg.price[1] }} Euro</div>
<div class="col-md-3">{{ reg.price[2] }} Euro</div>
</div>
</div>
{% endfor %}
</div>