-
Notifications
You must be signed in to change notification settings - Fork 0
/
registration.html
99 lines (85 loc) · 4.55 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
---
layout: default
title: Registration
weight: 5
---
<p>DALI is an invitation-only event, and it is not possible to transfer this invitation to others.</p>
<p>The registration fee is 450€ (7,500 ZAR) for attendees coming from academia and 600€ (10,000 ZAR) for those coming from industry.
Registration includes symposium and workshops, coffee breaks, and a conference dinner (possibly more).</p>
<p>After paying the registration fee, please tell us more about your DALI2019 trip by completing the questionnaire below
so we can make your trip as comfortable as possible.<br>
<center><a href="https://goo.gl/forms/IRvQzsEpiCE44GHk1" target="_blank">DALI 2019 Questionnaire</a></center>
</p>
<h3>Payment</h3>
<p>Accepted payment methods are Bank Transfer, and Card Payment.
<br><br>
<strong>Bank transfer</strong>
<br>
<table>
<tr><td>Investec Bank:</td><td></td></tr>
<tr><td>Account name:</td><td>Fenestraria</td></tr>
<tr><td>Account no:</td><td>100 122 56 776</td></tr>
<tr><td>Branch code:</td><td>580105</td></tr>
<tr><td>Branch name:</td><td>100 Grayston Drive</td></tr>
<tr><td>Swift code:</td><td>IVESZAJJXXX</td></tr>
<tr><td>Reference:</td><td>Dali 2019 your name & your surname</td></tr>
</table>
<br>
If you pay your registration fee by bank transfer, please send the proof of payment (it can be a screenshot) to <a href="mailto:[email protected]">Lizette De Wet</a> and <a href="mailto:[email protected]">Diana Rebmann</a>.
<br><br>
<strong>Online payment</strong>
<br><br>
To pay online, please use the following form:
<br><br>
<form name="form" id="form" method="POST" action="javascript:void(0);" onsubmit="checkout();"> <!---this is where you will POST too in a NEW WINDOW--->
<table>
<tr><td>First name (test):</td><td><input type="text" size="30" name="customerFirstname" id="customerFirstname" placeholder="First Name" required></td>
<td>Last name:</td><td><input type="text" size="30" name="customerLastname" id="customerLastname" placeholder="Last Name" required></td></tr>
<tr><td>Affiliation:</td><td><input type="text" size="30" name="customerAffiliation" id="customerAffiliation" placeholder="Affiliation" required></td>
<td>Email:</td><td><input type="email" size="30" name="customerEmail" id="customerEmail" placeholder="Email" required></td></tr> <!---Card holders email address--->
<tr><td>Registration:</td>
<td><select name="customerType" id="customerType" onchange="updateCart(this)" required>
<option value="" selected disabled hidden>Choose your registration</option>
<option value="academia">Academia (7,500.00 ZAR)</option>
<option value="industry">Industry (10,000.00 ZAR)</option>
</select></td>
<td>Cart total:</td><td><font color="red"><div class="simpleCart_total"></div></font></td></tr>
</table>
</form>
<br>
<button type="reset" form="form" class="simpleCart_empty" value="Reset">RESET</button>
<input type="submit" form="form" name="submit" value="PAY NOW">
</p>
<p style="text-align:center;"><img src="{{ '/assets/images/Combination-7_Horizontal.jpg' | prepend: site.baseurl }}" /></p>
<br>
</p><small><strong><font color="red">Information</font></strong>: Once your registration was successful, you will immediately receive a generic email from Sage Pay, confirming your payment.
As soon as we have received your payment on our end, we will send you a confirmation by email including your name and the registration fee for DALI 2019.</small></p>
<br>
<h3>Hotel Room</h3>
<p>To book a room at Fancourt hotel, please contact <a href="mailto:[email protected]">Renalda</a> with "Dali 2019" in the subject line.
<br>
<ul>
<li>Delegate rate: <strong>R2345</strong></li>
<li>Spouse rate: <strong>R1960</strong></li>
<li>Children under 16 stay for free (2 per family of 2 adults). If more than two children will accompany you, please speak to Diana and Lizette.</li>
</ul>
</p>
<br><br><br>
<script>
// update the current cart according to the chosen registration
function updateCart( item ) {
simpleCart.empty();
if (item.value == "academia"){
simpleCart.add({name:"Academia", price: 7500.00, quantity: 1});
}else if(item.value == "industry"){
simpleCart.add({name:"Industry", price: 10000.00, quantity: 1});
}
}
// checkout the cart
function checkout(){
if( simpleCart.items().length > 0 )
simpleCart.checkout();
else
alert("Your shopping cart is empty. Please choose the registration type.");
}
</script>