blob: aa61d0158fb9cce1bb34c4311deee6aa6049e964 (
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
|
{% load static %}
<!DOCTYPE html>
<html lang="en">
{% include 'header.html' %}
<body data-spy="scroll" data-target="#site-nav">
{% include 'navbar.html' %}
{% block content %}{% endblock content %}
{% include 'footer.html' %}
<div class="modal fade" id="registermdl" role="dialog">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal">×</button>
</div>
<div class="modal-body">
<p class="text-justify">Registrations for the conference will open from next week. Keep checking our website for further notifications.</p>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-info" data-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>
<div class="modal fade" id="modal_terms_and_conditions" role="dialog">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal">×</button>
</div>
<div class="modal-body">
<center>
<h1>Terms and conditions</h1>
</center>
<div class="row">
<div class="col-md-12">
<ul>
<li>The decision of the organization will be final.</li>
<li>All authors must register for the conference.</li>
<li>The copyright for the content uploaded or shared by any means will be transferred to FOSSEE, IIT Bombay.</li>
<li>The Organization reserves the rights to release this content under Creative Commons Attribution-ShareAlike 4.0 International License in any format.</li>
</ul>
</div>
</div>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-info" data-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>
</body>
</html>
|