-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathregistration.html
86 lines (74 loc) · 2.63 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
---
layout: default
title: "<del>Register Now</del>"
group: Conference
registrations:
early:
- type: Conference Only
price: [700, 875, 300]
- type: Conference + Workshop (incl. tutorial)
price: [850, 1125, 350]
- type: Workshop Only (incl. tutorial)
price: [300, 400, 150]
late:
- type: Conference Only
price: [800, 975, 400]
- type: Conference + Workshop (incl. tutorial)
price: [950, 1225, 450]
- type: Workshop Only (incl. tutorial)
price: [350, 450, 200]
---
<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><b>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.</b></p>
<p> </p>
<div class="row">
<div class="col-sm-6 col-sm-offset-3">
<a href="http://www.regonline.com/mobihoc2018" class="btn btn-primary btn-block" role="button">>> Register Now <<</a>
</div>
</div>
<p> </p>
<p>All fees are in US$, payable via credit card.</p>
<div class="list-group condensed">
<div class="list-group-item active">Early Registration EXTENDED (Before Jun 10, 2018 11:59pm CDT)</div>
<div class="list-group-item">
<div class="row">
<div class="col-md-3"><b>Event</b></div>
<div class="col-md-3"><b>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] }}</div>
<div class="col-md-3">${{ reg.price[1] }}</div>
<div class="col-md-3">${{ reg.price[2] }}</div>
</div>
</div>
{% endfor %}
</div>
<div class="list-group">
<div class="list-group-item active">Late Registration (Starting from Jun 11, 2018 00:00am CDT)</div>
<div class="list-group-item">
<div class="row">
<div class="col-md-3"><b>Event</b></div>
<div class="col-md-3"><b>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] }}</div>
<div class="col-md-3">${{ reg.price[1] }}</div>
<div class="col-md-3">${{ reg.price[2] }}</div>
</div>
</div>
{% endfor %}
</div>