summaryrefslogtreecommitdiff
path: root/static/website/templates/register.html
blob: db2ed6c29f989b7eb7e93bbbfba36ca18876d76a (plain)
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
98
{% extends 'website/templates/base.html' %}
{% load static %}

{% block sidebar %}
{% endblock %}

{% block current %}
    Register
{% endblock %}

{% block content %}
    <div class="row">
        <div class="col-lg-6 col-md-6 col-sm-6 col-xs-6">
            <div id="dates">
                <h4 class="garmond" align="center"><u>Ticket Pricing</u></h4>
                <table class="table table-bordered">
                    <tr>
                        <td>Regular Registration</td>
                        <td>800.0 INR</td>
                    </tr>
                    <tr>
                        <td>Corporate Registration</td>
                        <td>1500.0 INR</td>
                    </tr>
                </table>
                <hr>
                <h4 class="garmond" align="center"><u>Addons</u></h4>
                <table class="table table-bordered">
                    <tr>
                        <td>Accommodation</td>
                        <td>800.0 INR</td>
                    </tr>
                    <tr>
                        <td><a href="#" data-toggle="modal" data-target="#teeModal">T-Shirt</a> (click to view the design)</td>
                        <td>250.0 INR</td>
                    </tr>
                </table>
                <p>If you already have the main tickets and just need to buy addons click <a href="https://scipyindia2014.doattend.com/get_addons" target="_blank">here</a>
            </div> <!-- /#dates -->
        </div> <!-- /.col -->
        <div class="col-lg-6 col-md-6 col-sm-6 col-xs-6">
            <h4 class="garmond" align="center"><u>Ticket Details</u></h4>
            <p>
                <b>Regular Registration</b> is only for students & faculty members from any college/institutes. If you have opted for "Regular Registration", you will have to present your college/institutes ID card at the registration desk at the venue.
            </p>
            <p>
                <b>Corporate Registration</b> is for only for working professionals.
            </p>
            <hr>
            <p>
                <b>Accommodation</b> will be provided in IIT-B hostels on twin sharing basis from 4th evening to 8th morning.
            </p>
            <p>
                <b>Accommodation</b> or <b>T-Shirt</b> is not included in any of the registration tickets &amp; have to be purchased separately.
            </p>
            <hr>
        </div> <!-- /.col -->
    </div><!-- /row -->

    <div class="row">
        <div class="col-lg-6 col-md-6 col-sm-6 col-xs-6">
            <div id="dates">
                <h4 class="garmond" align="center"><u>Important Dates</u></h4>
                <table class="table table-bordered">
                    <tr>
                        <td>Registration Starts</td>
                        <td>22<sup>nd</sup> &nbsp;&nbsp; Sep. 2014</td>
                    </tr>
                    <tr>
                        <td>Registration Ends</td>
                        <td>1<sup>st</sup> &nbsp;&nbsp; Dec. 2014</td>
                    </tr>
                </table>
                <hr>
            </div> <!-- /#dates -->
        </div> <!-- /.col -->
        <div class="col-lg-6 col-md-6 col-sm-6 col-xs-6">
            <br><br>
            <p>
                <u class="garmond">Registration for the conference is now open.</u><br><br>
                <a href='http://scipyindia2014.doattend.com'><img src='http://doattend.com/assets/btnw-reg-now.png'/></a>
            </p>
        </div> <!-- /.col -->
    </div><!-- /row -->
    <div class="modal fade" id="teeModal" tabindex="-1" role="dialog" aria-labelledby="teeModalLabel" aria-hidden="true">
      <div class="modal-dialog">
        <div class="modal-content">
          <div class="modal-header">
            <button type="button" class="close" data-dismiss="modal"><span aria-hidden="true">&times;</span><span class="sr-only">Close</span></button>
            <h4 class="modal-title" id="teeModalLabel">SciPy India 2014: T-Shirt Design</h4>
          </div>
          <div class="modal-body">
            <img width=570 height=520 src="{% static 'website/images/front.JPG' %}">
          </div>
        </div>
      </div>
    </div>
{% endblock %}