-
Notifications
You must be signed in to change notification settings - Fork 1
/
_registration.html
71 lines (56 loc) · 2.83 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
{% extends "_layout.html" %}
{% block title %}Registration{% endblock %}
{% block content %}
<div class="container">
<div class="row">
<h4>Conference Registration</h4>
</div>
<div class="mx-auto" style="width: 400px; margin: 50px;">
Registration on or before
<b>{{deadlines.earlyregistration.date}}</b>:
<table class="table">
<tr><td>SIAM Member (early) </td><td>445</td></tr>
<tr><td>non-SIAM Member (early) </td><td>495</td></tr>
<tr><td>student </td><td>185</td></tr>
</table>
</div>
<div class="mx-auto" style="width: 400px; margin: 50px;">
Registration after
<b>{{deadlines.earlyregistration.date}}</b>:
<table class="table">
<tr><td>SIAM Member </td><td> 500</td></tr>
<tr><td>non-SIAM Member </td><td> 550</td></tr>
<tr><td>student </td><td> 185</td></tr>
</table>
</div>
<p>
To receive the early, discounted rates you must register on or before
<b>{{deadlines.earlyregistration.date}}</b>:
</p>
<p>
Registration will take place through EventZilla at the following link:
<a role="button" class="btn btn-primary btn-lg" href="https://www.eventzilla.net/web/event/18th-copper-mountain-conference-on-multigrid-methods-2017-2138877681">Register</a>
</p>
<p>
Registration fees include a registration packet (available at the conference registration desk), a reception, continental breakfast at the conference each day, coffee breaks at the conference, and a banquet. Please indicate your availability for these events at registration checkout.
</p>
<p>
No refunds will be given for cancellations on or after {{deadlines.cancellation.date}}.
Full refunds less a $100 service charge will be given if
notified before {{deadlines.cancellation.date}}.
</p>
<p> Lodging and conference expenses may be awarded, subject to NSF
funding. Student paper winners will have priority. Students seeking
support should email the conference coordinator, Annette Anthony
(annetteFanthony@gmail.com) for more information. </p>
<p>
Attendees requiring visas should refer to <a href="http://sites.nationalacademies.org/PGA/biso/visas/index.htm">http://sites.nationalacademies.org/PGA/biso/visas/index.htm</a> for guidelines on the process.
</p>
<p>
For travel to the United States, ESTA approval is required for the Visa Waiver Program (VWP). Additional information can be found at <a href="http://travel.state.gov/content/visas/english/business.html">http://travel.state.gov/content/visas/english/business.html</a>.
</p>
<p>
Additional questions? Please contact the <a href="people.html">conference chairs</a>.
</p>
</div>
{% endblock %}