-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathRegistration.php
88 lines (86 loc) · 3.7 KB
/
Registration.php
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
<?php
$title = "Registration | ICHSA 2018";
$id_name = 'id="scrs-registration-page"';
include 'include/php/head.php';
?>
<main>
<div class="container">
<h4 class="heading">Registration</h4>
<div class="divider"></div>
<div class="section">
<div class="row">
<div id="highlight" class="section scrollspy">
<div class="row">
<div class="col s12">
<table class="highlight centered">
<thead>
<tr>
<th></th>
<th colspan="2">Indian</th>
<th colspan="2">Foreigner</th>
</tr>
<tr>
<th class="table-heading">Category</th>
<th class="table-heading" style="text-decoration: line-through;">Early Bird Registration</th>
<th class="table-heading">Regular Registration</th>
<th class="table-heading" style="text-decoration: line-through;">Early Bird Registration</th>
<th class="table-heading">Regular Registration</th>
</tr>
</thead>
<tbody>
<tr>
<td>Full Time Student Author</td>
<td style="text-decoration: line-through;">INR 3000</td>
<td>INR 4500</td>
<td style="text-decoration: line-through;">USD 500</td>
<td>USD 600</td>
</tr>
<tr>
<td>Regular Author</td>
<td style="text-decoration: line-through;">INR 6000</td>
<td>INR 7500</td>
<td style="text-decoration: line-through;">USD 600</td>
<td>USD 700</td>
</tr>
<tr>
<td>Only presenting a paper</td>
<td style="text-decoration: line-through;">INR 2000</td>
<td>INR 3000</td>
<td style="text-decoration: line-through;">USD 300</td>
<td>USD 400</td>
</tr>
<tr>
<td>Only Attending</td>
<td style="text-decoration: line-through;">INR 1500</td>
<td>INR 3000</td>
<td style="text-decoration: line-through;">USD 100</td>
<td>USD 200</td>
</tr>
<tr>
<td>Accompanying Person</td>
<td style="text-decoration: line-through;">INR 1500</td>
<td>INR 3000</td>
<td style="text-decoration: line-through;">USD 100</td>
<td>USD 200</td>
</tr>
</tbody>
</table>
<div style="clear:both">
<p style="color:red; margin: 2px 0 2px 0; padding:2px;">Early Bird Registration by 31
<sup>st</sup> December 2017</p>
<p class="note-text">
<strong>Note:</strong> * Registration Fee Includes Book of abstract, conference bag, breakfasts, lunches and
a gala dinner. Atleast one author must register with full registration fee applicable as above for inclusion
of paper in the proceedings. One registration will cover only a paper of 10 pages length.
</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</main>
<?php
include 'include/php/foot.php';
?>