summaryrefslogtreecommitdiff
path: root/static/website
diff options
context:
space:
mode:
Diffstat (limited to 'static/website')
-rw-r--r--static/website/bootstrap-css/assets/css/main.css19
-rw-r--r--static/website/bootstrap-css/assets/images/favicon.pngbin0 -> 2519 bytes
-rwxr-xr-xstatic/website/bootstrap-css/custom.css3
-rw-r--r--static/website/bootstrap-css/images/loader-64x/Preloader_2.gif.gifbin0 -> 723 bytes
-rwxr-xr-xstatic/website/templates/abstract-details.html44
-rwxr-xr-xstatic/website/templates/cfp.html56
-rwxr-xr-xstatic/website/templates/comment-abstract.html98
-rwxr-xr-xstatic/website/templates/edit-proposal.html35
-rw-r--r--static/website/templates/header.html3
-rw-r--r--static/website/templates/home.html508
-rw-r--r--static/website/templates/navbar.html17
-rwxr-xr-xstatic/website/templates/registration/password_change_done.html47
-rwxr-xr-xstatic/website/templates/registration/password_change_form.html49
-rwxr-xr-xstatic/website/templates/registration/password_reset_complete.html41
-rwxr-xr-xstatic/website/templates/registration/password_reset_confirm.html91
-rwxr-xr-xstatic/website/templates/registration/password_reset_done.html41
-rwxr-xr-xstatic/website/templates/registration/password_reset_form.html26
-rwxr-xr-xstatic/website/templates/submit-cfw.html102
-rwxr-xr-xstatic/website/templates/user-register.html43
19 files changed, 972 insertions, 251 deletions
diff --git a/static/website/bootstrap-css/assets/css/main.css b/static/website/bootstrap-css/assets/css/main.css
index 57ac778..1efd34d 100644
--- a/static/website/bootstrap-css/assets/css/main.css
+++ b/static/website/bootstrap-css/assets/css/main.css
@@ -41,7 +41,7 @@ p {
}
ul li {
- font-weight: 700;
+ font-weight: 500;
margin-bottom: 10px;
}
@@ -457,13 +457,15 @@ ul li {
/*
* 6.6 Section: Schedule
*/
-.schedule-box {
- position: relative;
- background-color: #000;
+ .schedule-box {
+ /*background-color: #000;*/
+ color: black;
+ font-weight: 500;
+}
+.schedule-box .schedule-header{
color: #fff;
- text-align: center;
- padding: 50px 0;
- margin: 25px 0 0;
+ background-color: #806600;
+ font-weight: 600;
}
.schedule-box::before {
content: '';
@@ -472,9 +474,8 @@ ul li {
right: 5px;
bottom: 5px;
left: 5px;
- border: 1px solid #fff;
+ /*border: 1px solid #fff;*/
}
-
/*
* 6.7 Section: Schedule
*/
diff --git a/static/website/bootstrap-css/assets/images/favicon.png b/static/website/bootstrap-css/assets/images/favicon.png
new file mode 100644
index 0000000..193caff
--- /dev/null
+++ b/static/website/bootstrap-css/assets/images/favicon.png
Binary files differ
diff --git a/static/website/bootstrap-css/custom.css b/static/website/bootstrap-css/custom.css
index 7014560..4533ab7 100755
--- a/static/website/bootstrap-css/custom.css
+++ b/static/website/bootstrap-css/custom.css
@@ -1,6 +1,7 @@
/* Paste this css to your style sheet file or under head tag */
/* This only works with JavaScript,
if it's not present, don't show loader */
+{% load static %}
.no-js #loader { display: none; }
.js #loader { display: block; position: absolute; left: 100px; top: 0; }
.se-pre-con {
@@ -10,7 +11,7 @@ if it's not present, don't show loader */
width: 100%;
height: 100%;
z-index: 9999;
- background: url(images/loader-64x/Preloader_2.gif) center no-repeat #fff;
+ background: url({% static 'website/bootstrap-css/images/loader-64x/Preloader_2.gif' %}) center no-repeat #fff;
}
.btn:focus, .btn:active, button:focus, button:active {
diff --git a/static/website/bootstrap-css/images/loader-64x/Preloader_2.gif.gif b/static/website/bootstrap-css/images/loader-64x/Preloader_2.gif.gif
new file mode 100644
index 0000000..8b71ca9
--- /dev/null
+++ b/static/website/bootstrap-css/images/loader-64x/Preloader_2.gif.gif
Binary files differ
diff --git a/static/website/templates/abstract-details.html b/static/website/templates/abstract-details.html
new file mode 100755
index 0000000..07dcfc3
--- /dev/null
+++ b/static/website/templates/abstract-details.html
@@ -0,0 +1,44 @@
+{% extends "base.html" %}
+{% load static %}
+ {% block content %}
+ <section id="abstract_details" class="section abstract_details">
+ <div class="container">
+ <p>
+ <center>
+ <h2>Abstract Details</h2>
+ </center>
+ </p>
+ <h3><span class="label label-primary">{{ proposal.user.first_name }} {{ proposal.user.last_name }}</span></h3>
+ <hr>
+ <p><b>Title: </b>&nbsp;{{ proposal.title }}</p>
+ <p><b>About Me: </b>&nbsp;{{ proposal.about_me | linebreaks }}</p>
+ <p><b>Abstract: </b>&nbsp;{{ proposal.abstract |linebreaks }}</p>
+ {% if proposal.prerequisite %}
+ <p><b>Prerequisite: </b>&nbsp;{{ proposal.prerequisite |linebreaks }}</p>
+ {% endif%}
+ <p><b>Duration: </b>&nbsp;{{ proposal.duration }} {% if proposal.proposal_type == "ABSTRACT"%} Mins {% else %}Hours {%endif%}</p>
+ {% if proposal.proposal_type == "ABSTRACT"%}
+ <p><b>Tags: </b>&nbsp;{{ proposal.tags }}</p>
+ {% else %}
+ <p><b>Level: </b>&nbsp;{{ proposal.tags }}</p>
+ {% endif %}
+ <p><b>Date Created: </b>&nbsp;{{ proposal.date_created }}</p>
+ {% if url %}
+ <p><b>Attachment: </b>&nbsp;
+ <a href="{{ url }}" class="btn btn-info" target="_blank">{{filename}}</a>
+ </p>
+ {% endif %}
+ <p><b>Comments: </b>
+ <hr>
+ {% for comment in comments %}
+ <div>
+ <strong>Comment By:</strong>
+ {{ comment.user.first_name }} {{ comment.user.last_name }}
+ <p>{{ comment.comment| linebreaks }}</p>
+ </div>
+ <hr>
+ {% endfor %}
+ </div>
+ </section>
+ {% endblock %}
+
diff --git a/static/website/templates/cfp.html b/static/website/templates/cfp.html
index 704fafb..f8160ac 100755
--- a/static/website/templates/cfp.html
+++ b/static/website/templates/cfp.html
@@ -9,7 +9,7 @@
{% block content %}
<section id="cfp" class="section cfp">
<div class="container">
- <p>
+ <!-- <p>
<center>
{% if user and not user.is_anonymous %}
<h2>Submit Proposal</h2>
@@ -69,10 +69,7 @@
</center>
{% endif %}
{% else %}
-
- <hr>
- <div class="row">
- <div class="col-sm-4">
+ <div class="col-sm-4">
<span>
<h2>
<u>Login</u>
@@ -82,7 +79,7 @@
{% if invalid %}
<p style="color:red; font-size:15px;">* Invalid Username/Password</p>
{% endif %}
- <!-- <div id = "my_form"> -->
+ <!-- <div id = "my_form">
<form action="" method="POST">
{{ form.as_p }}
<button class="button special" name ="login" type="submit">Login</button>
@@ -92,7 +89,7 @@
<a href="/2017/forgotpassword/">Forgot Password?</a>
{% csrf_token %}
</form>
- <!-- </div> -->
+ <!-- </div>
<p>Or Sign in with:&nbsp;<br>
<a href="{% url 'social:begin' 'google-oauth2' %}?next={{ request.path }}" class="btn btn-social-icon " style="color:#d34836;">
<i class="fa fa-google-plus-square" style="font-size:40px;"></i>
@@ -118,31 +115,46 @@
</li>
</ul>
</p>
+ </div> -->
+ <div class="row">
+ <div class="col-md-12" >
+ <h3> Call for Papers</h3>
+ </div>
</div>
-
- <div class="col-sm-4" align="justify" style="background-color: #cef3f8;">
+ <div class="row">
+ <div class="col-md-12" style="font-weight: 500;">
+ <p class="text-justify">We invite papers on Chemical Process Modelling, Simulation and Optimization. Time duration for oral presentation will be 15 minutes. Accepted papers will be published in conference proceedings. Award will be given to best paper and best poster.</p>
+ <p class="text-justify">Paper submission starts on September 10 2018.</p>
+ </div>
+ </div>
+ <div class="row">
+ <div class="col-sm-6" align="justify">
<br>
<h4 class="panel-title">
- Guidelines for a Proposal
+ General guidelines for paper submission:
</h4>
- <ul style="margin-left: -6%;">
- <li>The project should be an actual implementation rather than just an idea.</li>
- <li>Besides implementation, the submission can also be about experiences and usage of Python, Python-based tools and libraries for research or teaching.</li>
- <li>Abstract should be of 300 to 700 words describing the topic, including its relevance to scientific computing or the use of Python in education.</li>
- <li>All selected proposals must be presented at the conference by atleast one author.</li>
+ <ul style="margin-top: 2%;">
+ <li>Papers are invited on chemical process, modelling, simulation, and optimization. </li>
+ <li>Use of open source software such as DWSIM and OpenModelica will be preferred.</li>
+ <li>Authors must submit the manuscript up to 6 pages of length including tables, figures and references in the required 2-column format as described in the template below.</li>
+ <li>Submissions will be judged on originality, significance, interest, clarity, relevance, and presentation.</li>
+ <li>Authors should ensure that their work doesn’t contain plagiarized content and not under copyright elsewhere.</li>
+ <li>Please download the appropriate file for structure of the paper. We encourage use of LaTeX for creating paper.(Click for <a href= "https://static.fossee.in/dwsim/nccps-templates/LaTeX-TEMPLATE.zip" target="_blank" style="color: #806600">LaTeX</a>/ <a href="https://static.fossee.in/dwsim/nccps-templates/WORD-TEMPLATE.zip" target="_blank" style="color: #806600">Word template</a>)</li>
</ul>
</div>
- <div class="col-sm-4" align="justify" style="background-color: #8cc9f0;">
+ <div class="col-sm-6" align="justify">
<br>
<h4 class="panel-title">
- Guidelines for a Workshop
+ Suggested Contents of a paper
</h4>
- <ul style="margin-left: -6%;">
- <li>There are two parallel tracks, one for beginners and one for advanced users.</li>
- <li>The workshops should be hands-on with plenty of exercises for the users.</li>
- <li>It is advisable to pick particular problem(s) and orient your workshop around how to solve those using the package you plan to talk about.</li>
- <li>Provide us with links to any resources you have already prepared for the workshop.</li>
+ <ul style="margin-top: 2%;">
+ <li> Selection of a topic</li>
+ <li> Importance of a topic</li>
+ <li>Any difficulties while solving with open source software.</li>
+ <li>The methodology followed to overcome these difficulties(any assumptions, data regression, custom modelling, etc.)</li>
+ <li>Validation of the results with published papers/experimentation/commercial simulators like CHEMCAD, Aspen Plus, UniSim etc.</li>
+ <li>Sensitivity studies, adjust, some tricks used for faster calculation etc done to optimize results and reduce simulation time.</li>
</ul>
</div>
diff --git a/static/website/templates/comment-abstract.html b/static/website/templates/comment-abstract.html
new file mode 100755
index 0000000..b6dd3a2
--- /dev/null
+++ b/static/website/templates/comment-abstract.html
@@ -0,0 +1,98 @@
+{% extends "base.html" %}
+{% load static %}
+{% load widget_tweaks %}
+{% block content %}
+
+<section id="comment_abstract" class="section comment_abstract">
+ <div class="container">
+ <p>
+ <center>
+ {% if proposal.proposal_type == "ABSTRACT"%}
+ <h2>Abstract Details</h2>
+ {% else %}
+ <h2>Workshop Details</h2>
+ {% endif %}
+ </center>
+ </p>
+ <h3>{{ proposal.user.first_name }} {{ proposal.user.last_name }}</h3>
+ <p><b>Title: </b>&nbsp;{{ proposal.title }}</p>
+ <p align="justify"><b>About Me: </b>&nbsp;{{ proposal.about_me |linebreaks }}</p>
+ {% if proposal.proposal_type == "ABSTRACT"%}
+ <p align="justify"><b>Abstract:</b>&nbsp;
+ {% else %}
+ <p align="justify"><b>Description:</b>&nbsp;
+ {% endif %}
+ {{ proposal.abstract | linebreaks }}
+ </p>
+ {% if proposal.prerequisite %}
+ <p align="justify"><b>Prerequisite: </b>&nbsp;{{ proposal.prerequisite| linebreaks }}</p>
+ {% endif%}
+ <p><b>Duration: </b>&nbsp;{{ proposal.duration }} {% if proposal.proposal_type == "ABSTRACT"%} Mins {% else %}Hours {%endif%}</p>
+ {% if proposal.proposal_type == "ABSTRACT"%}
+ <p><b>Tags: </b>&nbsp;{{ proposal.tags }}</p>
+ {% else %}
+ <p><b>Level: </b>&nbsp;{{ proposal.tags }}</p>
+ {% endif %}
+ {% if url %}
+ <b>Attachment: </b>&nbsp;<a href="{{ url }}" class="btn btn-info" target="_blank">{{ filename }}</a>
+ {% endif %}
+ <p><b>Date Created: </b>&nbsp;{{ proposal.date_created }}</p>
+ <form action="{% url 'website:rate_proposal' proposal.id %}" method='POST' enctype="multipart/form-data">
+ {% csrf_token %}
+ <b>Ratings :</b>
+ <select name="rating" style="width:70px;" >
+ <!--Call run() function-->
+ <option value="0">0</option>
+ <option value="1">1</option>
+ <option value="2">2</option>
+ <option value="3">3</option>
+ <option value="4">4</option>
+ <option value="5">5</option>
+ <option value="6">6</option>
+ <option value="7">7</option>
+ <option value="8">8</option>
+ <option value="9">9</option>
+ <option value="10">10</option>
+ </select>
+ /10 &nbsp;
+ <input class="btn btn btn-primary" type="submit" value="Rate">
+ </form>
+ <h4>Ratings</h4>
+ {% for rate in rates %}
+ <div>
+ {{rate.rating}}/10
+ by - {{ rate.user }}
+ </div>
+ {% endfor %}
+ <hr>
+ <h4>Comments</h4>
+ {% for comment in comments %}
+ <div>
+ <strong>Comment By:</strong>
+ {{ comment.user.first_name }} {{ comment.user.last_name }}
+ <p>{{ comment.comment| linebreaks }}</p>
+ <!-- {% if user == comment.user %}
+ <form action="" method='POST' enctype="multipart/form-data">
+ {% csrf_token %}
+ {% endif %} -->
+ </div>
+ <hr>
+ </form>
+ {% endfor %}
+ <form action="{% url 'website:comment_abstract' proposal.id %}" method='POST' enctype="multipart/form-data">
+ {% csrf_token %}
+ <textarea rows="5" cols="100" id="comment" class= "comment" name="comment" placeholder = "Add commnet here..."></textarea><br/>
+ <input class="button special" type="submit" value="Comment">
+ </form>
+ <!-- <form action="{% url 'website:status' proposal.id %}" method='POST'>{% csrf_token %}
+ <input type="submit" class="button special" style="background:green" value="Accept" name="accept"/>
+ <input type="submit" class="button special" style="background:red "value="Reject" name="reject"/>
+ <input type="submit" class="button special" style="background:grey "value="Resubmit" name="resubmit"/>
+
+ </form>
+ -->
+ </div>
+ </section>
+ {% endblock %}
+
+
diff --git a/static/website/templates/edit-proposal.html b/static/website/templates/edit-proposal.html
new file mode 100755
index 0000000..fdcc39b
--- /dev/null
+++ b/static/website/templates/edit-proposal.html
@@ -0,0 +1,35 @@
+{% extends "base.html" %}
+{% load static %}
+{% load widget_tweaks %}
+{% block content %}
+
+<section id="edit_proposal" class="section edit_proposal">
+ <div class="container">
+ <p>
+ <center>
+ {% if proposal.proposal_type == "ABSTRACT" %}
+ <h2>Edit Abstract Proposal</h2>
+ {% else %}
+ <h2>Edit Workshop Proposal</h2>
+ {% endif %}
+ </center>
+ </p>
+ <h3><span class="label label-primary">{{ proposal.user.first_name }} {{ proposal.user.last_name }}</span></h3>
+ <form action="" method=POST enctype="multipart/form-data">
+ {% csrf_token %}
+ <div class="row1">
+ {% for field in form %}
+ <p>{{ field.label}}
+ {% if field.field.required %} <span style="color:red;">*</span> {% endif %}
+ {{ field }}
+ </p>
+ <a style="color:red; ">{{ field.errors }}</a>
+ {% endfor %}
+ </div>
+ {% csrf_token %}
+ <center><button class="button special" type="submit">Submit</button></center>
+ </form>
+ <br>
+ </div>
+ </section>
+ {% endblock %}
diff --git a/static/website/templates/header.html b/static/website/templates/header.html
index e13720e..f9d9c53 100644
--- a/static/website/templates/header.html
+++ b/static/website/templates/header.html
@@ -9,7 +9,7 @@
<meta name="title" content="NCCPS-2018">
<meta name="description" content="The National Conference on Chemical Process Simulation-2018 is a confluence of academia and industry. This is an excellent opportunity for fostering academic and industrial collaborations. It is the place to meet the experts in chemical process simulation from all over the country. This conference provides a national platform to showcase the work done in this area by students and faculty.">
<meta name="keywords" content="DWSIM, OpenModelica, FOSSEE, NCCPS-2018, Chemical Engineering, IIT Bombay, MHRD">
- <!-- <link rel="icon" href="{% static 'website/bootstrap-css/assets/images/logo.png' %}" type="icon"> -->
+ <link rel="icon" href="{% static 'website/bootstrap-css/assets/images/favicon.png' %}" type="icon">
<title>NCCPS 2018</title>
<script src="{% static 'website/bootstrap-css/assets/js/1.5.2/jquery.min.js' %}"></script>
<script src="{% static 'website/bootstrap-css/assets/js/2.8.2/modernizr.js' %}"></script>
@@ -19,7 +19,6 @@
<link rel="stylesheet" href="{% static 'website/bootstrap-css/bower_components/bootstrap/dist/css/bootstrap.min.css' %}">
<link rel="stylesheet" href="{% static 'website/bootstrap-css/bower_components/ionicons/css/ionicons.min.css' %}">
<link rel="stylesheet" href="{% static 'website/bootstrap-css/assets/css/main.css' %}">
- <link rel="stylesheet" href="{% static 'website/bootstrap-css/assets/css/custom.css' %}">
<link rel="stylesheet" href="{% static 'website/bootstrap-css/custom.css' %}">
<script type="text/javascript">
// Wait for window load
diff --git a/static/website/templates/home.html b/static/website/templates/home.html
index b171f15..a267961 100644
--- a/static/website/templates/home.html
+++ b/static/website/templates/home.html
@@ -4,15 +4,8 @@
<div id="home" data="home"></div>
<header id="site-header" class="site-header valign-center img-fluid">
<div class="intro">
-
- <!-- <h2>21 &amp; 22 December, 2018 / IIT Bombay</h2>
-
- <h1>National Conference on Chemical Process Simulation - 2018</h1> -->
-
- <!-- <p>International conference on Python for education and computing</p> -->
-
<img class="img img-fluid" src="{% static 'website/bootstrap-css/assets/images/backgrounds/top_2.png' %}" alt=""> <br><br>
- <a class="btn btn-primary" data-scroll href="#submit">Submit a paper</a> <br><br>
+ <a class="btn btn-primary" href="{% url 'website:cfp' %}">Submit a paper</a> <br><br>
</div>
</header>
@@ -25,30 +18,11 @@
<p class="text-justify">The National Conference on Chemical Process Simulation-2018 is a confluence of academia and industry. This is an excellent opportunity for fostering academic and industrial collaborations. It is the place to meet the experts in chemical process simulation from all over the country. This conference provides a national platform to showcase the work done in this area by students and faculty.
</p>
-
- <!-- <figure>
- <img alt="" class="img-responsive" src="bootstrap-css/assets/images/about-us.jpg">
- </figure> -->
-
</div><!-- /.col-sm-6 -->
<div class="col-sm-6">
-
- <!-- <h3 class="section-title multiple-title">What is Our Goal?</h3>
-
- <p class="text-justify">One of the goals of the conference is to combine education, engineering, and science with computing through the medium of Python and thereby extrapolate on how powerful Scientific Computing is in various fields and among different communities.</p>
-
- <ul class="list-arrow-right">
-
- <li>Have hands on sessions</li>
- </ul> -->
<h3 class="section-title multiple-title" align="center"><u>News and Updates</u></h3>
<a class="twitter-timeline" data-width="500" data-height="380" href="https://twitter.com/nccps2018?ref_src=twsrc%5Etfw">Tweets by nccps2018</a> <script async src="https://platform.twitter.com/widgets.js" charset="utf-8"></script>
- <!--
- <a class="twitter-timeline" href="https://twitter.com/FOSSEENMEICT" data-widget-id="1031487038086762496" data-width="100%">Tweets by @FOSSEENMEICT</a>
-
-<script>!function(d,s,id){var js,fjs=d.getElementsByTagName(s)[0],p=/^http:/.test(d.location)?'http':'https';if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src=p+"://platform.twitter.com/widgets.js";fjs.parentNode.insertBefore(js,fjs);}}(document,"script","twitter-wjs");</script> -->
-
</div><!-- /.col-sm-6 -->
</div><!-- /.row -->
</div><!-- /.container -->
@@ -58,28 +32,16 @@
<div class="container">
<div class="row">
<div class="col-sm-4">
-
<i class="ion-ios-calendar"></i>
<h3>November 26 <br>2018</h3>
-
</div>
<div class="col-sm-4">
-
<i class="ion-ios-location"></i>
<h3>Lecture Hall Complex, <br>IIT Bombay</h3>
-
</div>
- <!-- <div class="col-sm-3">
-
- <i class="ion-pricetags"></i>
- <h3>Over 300<br>Tickets</h3>
-
- </div> -->
<div class="col-sm-4">
-
<i class="ion-speakerphone"></i>
<h3>Paper Submission in Progress</h3>
-
</div>
</div><!-- row -->
</div><!-- container -->
@@ -89,37 +51,13 @@
<div class="container">
<div class="row">
<div class="col-md-12">
-
<h3 class="section-title">Speakers</h3>
-
</div>
</div>
<div class="row">
- <!-- <div class="col-md-4">
- <div class="speaker">
-
- <figure>
- <img alt="" class="img-responsive center-block img-rounded" src="{% static 'website/bootstrap-css/assets/images/speakers/dummy.png' %}" style="max-width: 70%;">
- </figure>
-
- <h4>ABC XYZ</h4>
-
- <p>WXYZ QWERTY</p>
-
- <ul class="social-block">
- <li><a href=""><i class="ion-social-twitter"></i></a></li>
- <li><a href=""><i class="ion-social-facebook"></i></a></li>
- <li><a href=""><i class="ion-social-linkedin-outline"></i></a></li>
- <li><a href=""><i class="ion-social-googleplus"></i></a></li>
- </ul>
-
- </div><!-- /.speaker -->
- <!-- </div> --> <!-- /.col-md-4 -->
-
<div class="col-md-6">
<div class="speaker">
-
<figure>
<img alt="" class="img-responsive center-block img-rounded" src="{% static 'website/bootstrap-css/assets/images/speakers/madhavan.png' %}" style="max-width: 70%;height: 253px;" data-toggle="modal" data-target="#myModal">
</figure>
@@ -127,17 +65,9 @@
<h4>Prof. K P Madhavan</h4>
<p style="text-transform: none;">Emeritus Professor, Dept. of Chemical Engineering, IIT Bombay</p>
-
- <!--<ul class="social-block">
- <li><a href=""><i class="ion-social-twitter"></i></a></li>
- <li><a href=""><i class="ion-social-facebook"></i></a></li>
- <li><a href=""><i class="ion-social-linkedin-outline"></i></a></li>
- <li><a href=""><i class="ion-social-googleplus"></i></a></li>
- </ul> -->
<div class="modal fade spkrmodal" id="myModal" role="dialog">
<div class="modal-dialog">
-
- <!-- Modal content-->
+ <!-- Modal content-->
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal">&times;</button>
@@ -150,7 +80,6 @@
<button type="button" class="btn btn-info" data-dismiss="modal">Close</button>
</div>
</div>
-
</div>
</div>
</div><!-- /.speaker -->
@@ -158,24 +87,13 @@
<div class="col-md-6">
<div class="speaker">
-
<figure>
<img alt="" class="img-responsive center-block img-rounded" src="{% static 'website/bootstrap-css/assets/images/speakers/alok.png' %}" style="max-width: 70%;height: 253px;" data-toggle="modal" data-target="#myModal1">
</figure>
-
<h4>Mr. Alok Pandit</h4>
-
<p style="text-transform: none;">Equinox Software and Services Private Limited</p>
-
- <!-- <ul class="social-block">
- <li><a href=""><i class="ion-social-twitter"></i></a></li>
- <li><a href=""><i class="ion-social-facebook"></i></a></li>
- <li><a href=""><i class="ion-social-linkedin-outline"></i></a></li>
- <li><a href=""><i class="ion-social-googleplus"></i></a></li>
- </ul> -->
<div class="modal fade spkrmodal" id="myModal1" role="dialog">
<div class="modal-dialog">
-
<!-- Modal content-->
<div class="modal-content">
<div class="modal-header">
@@ -189,7 +107,6 @@
<button type="button" class="btn btn-info" data-dismiss="modal">Close</button>
</div>
</div>
-
</div>
</div>
</div><!-- /.speaker -->
@@ -197,37 +114,167 @@
</div><!-- /.row -->
</div>
</section>
-<!-- <section id="registration" class="section registration">
- <div class="container">
+
+ <section id="registration" class="section registration">
+ <div class="container">
<div class="row">
<div class="col-md-12">
<h3 class="section-title">Registration</h3>
</div>
</div>
<div class="row">
- <div class="col-md-12"><p class="text-justify">
- This ticket allows you to ONLY attend the conference (workshops,oral & poster presentations, job fair) for 1 Day including breakfast, Lunch, Tea. It does not include Accommodation, Dinner & T-Shirt. This is a non-refundable and non-transferable ticket. There will be an additional 18% charge for GST.</p></div>
+ <div class="col-md-12">
+ <p class="text-justify">
+ This ticket allows you to ONLY attend the conference (workshops,oral & poster presentations, job fair) for 1 Day including breakfast, Lunch, Tea. It does not include Accommodation, Dinner & T-Shirt. This is a non-refundable and non-transferable ticket. There will be an additional 18% charge for GST.
+ </p>
</div>
-
</div>
-</section> -->
-
-<!--
-
- <section id="contribution" class="section bg-image-2 contribution">
- <div class="container">
<div class="row">
- <div class="col-md-12">
- <h3 class="text-uppercase mt0 font-400">Submit a Paper</h3>
-
- <p>We invite papers on Chemical Process Modelling, Simulation and Optimization. Time duration for oral presentation will be 15 minutes. Accepted papers will be published in conference proceedings.</p>
-
- <a class="btn btn-white" href="#">Submit</a>
+ <div class="col-md-12 schedule-box">
+ <table class="table table-bordered table-responsive">
+ <tr class="schedule-header">
+ <td style="vertical-align:bottom;border-top:none;!important">
+ <div class="align-baseline">
+ Ticket type
+ </div>
+ </td>
+ <td style="vertical-align:bottom;border-top:none;!important">
+ <div class="align-baseline">
+ Student
+ </div>
+ </td>
+ <td style="vertical-align:bottom;border-top:none;!important">
+ <div class="align-baseline">
+ Faculty
+ </div>
+ </td>
+ <td style="vertical-align:bottom;border-top:none;!important">
+ <div class="align-baseline">
+ Industry participant
+ </div>
+ </td>
+ </tr>
+ <tr>
+ <td style="vertical-align:bottom;border-top:none;!important">
+ <div class="align-baseline">
+ Regular Registration
+ <br>(15 Sept 2018 - 25 Oct 2018)
+ </div>
+ </td>
+ <td style="vertical-align:bottom;border-top:none;!important">
+ <div class="align-baseline">
+ Rs. 750
+ </div>
+ </td>
+ <td style="vertical-align:bottom;border-top:none;!important">
+ <div class="align-baseline">
+ Rs. 1,000
+ </div>
+ </td>
+ <td style="vertical-align:bottom;border-top:none;!important">
+ <div class="align-baseline">
+ Rs. 2,000
+ </div>
+ </td>
+ </tr>
+ <tr>
+ <td style="vertical-align:bottom;border-top:none;!important">
+ <div class="align-baseline">
+ Late Registration
+ <br>(26 Oct 2018 - 25 Nov 2018)
+ </div>
+ </td>
+ <td style="vertical-align:bottom;border-top:none;!important">
+ <div class="align-baseline">
+ Rs. 900
+ </div>
+ </td>
+ <td style="vertical-align:bottom;border-top:none;!important">
+ <div class="align-baseline">
+ Rs. 1,200
+ </div>
+ </td>
+ <td style="vertical-align:bottom;border-top:none;!important">
+ <div class="align-baseline">
+ Rs. 2,500
+ </div>
+ </td>
+ </tr>
+ <tr>
+ <td style="vertical-align:bottom;border-top:none;!important">
+ <div class="align-baseline">
+ Spot Registration
+ </div>
+ </td>
+ <td style="vertical-align:bottom;border-top:none;!important">
+ <div class="align-baseline">
+ Rs. 1,100
+ </div>
+ </td>
+ <td style="vertical-align:bottom;border-top:none;!important">
+ <div class="align-baseline">
+ Rs. 1,500
+ </div>
+ </td>
+ <td style="vertical-align:bottom;border-top:none;!important">
+ <div class="align-baseline">
+ Rs. 3,000
+ </div>
+ </td>
+ </tr>
+ </table>
</div>
</div>
- </div>
+ <div class="row">
+ <div class="col-md-12">
+ <p class="text-justify" style="color: red;">
+ *Spot registration will be subject to availability.
+ </p>
+ </div>
+ </div>
+ <div class="row">
+ <div class="col-md-12 schedule-box">
+ <table class="table table-bordered table-responsive">
+ <tr>
+ <td style="vertical-align:bottom;border-top:none;!important">
+ <div class="align-baseline">
+ Accomodation<br>
+ Add on
+ </div>
+ </td>
+ <td style="vertical-align:bottom;border-top:none;!important">
+ <div class="align-baseline">
+ We have limited Low cost accommodation, guaranteed only if you register early.
+ </div>
+ </td>
+ </tr>
+ <tr>
+ <td style="vertical-align:bottom;border-top:none;!important">
+ <div class="align-baseline">
+ T Shirt<br>
+ Rs 350/-<br>
+ Add on
+ </div>
+ </td>
+ <td style="vertical-align:bottom;border-top:none;!important">
+ <div class="align-baseline">
+ Change of size, exchange at the venue is not available. This is a non-refundable and non-transferable ticket.
+ </div>
+ </td>
+ </tr>
+ </table>
+ </div>
+ </div>
+ <div class="row">
+ <div class="col-md-12">
+ <center>
+ <a data-toggle="modal" data-target="#registermdl" class="btn btn-primary">Register now</a>
+ </center>
+ </div>
+ </div>
+ </div>
</section>
--->
+
<section id="coc" class="section coc">
<div class="container">
<div class="row">
@@ -275,6 +322,7 @@
</div>
</div>
+ </p>
<center>
<button type="button" class="btn btn-black" data-toggle="collapse" data-target="#demo">
<i class="fa fa-arrow-down" aria-hidden="true"></i>
@@ -282,6 +330,8 @@
</button>
</center>
</div>
+ </div>
+ </div>
</section>
@@ -289,17 +339,142 @@
<div class="container">
<div class="row">
<div class="col-md-12">
- <h3 class="section-title">Event Schedule</h3>
+ <h3 class="section-title">Tentative Schedule</h3>
</div>
</div>
<div class="row">
- <div class="col-md-12 col-sm-12">
- <div class="schedule-box">
- <div class="time">
- <!-- <time datetime="09:00">09:00 am</time> - <time datetime="22:00">10:00 am</time> -->
- </div>
- <p>TBD</p>
- </div>
+ <div class="col-md-12">
+ <p class="text-justify" style="font-weight: 500;"> Poster session - 8AM onwards</p>
+ </div>
+ </div>
+ <div class="row">
+ <div class="col-md-12 schedule-box">
+ <div>
+ <table class="table table-bordered" style="align-content: center !important;">
+ <tr class="schedule-header">
+ <td style="vertical-align:bottom;border-top:none;!important">
+ <div class="align-baseline">
+ Time
+ </div>
+ </td>
+ <td style="vertical-align:bottom;border-top:none;!important">
+ <div class="align-baseline">
+ Program
+ </div>
+ </td>
+ </tr>
+ <tr>
+ <td style="vertical-align:bottom;border-top:none;!important">
+ <div class="align-baseline">
+ 08:00 - 09:00
+ </div>
+ </td>
+ <td style="vertical-align:bottom;border-top:none;!important">
+ <div class="align-baseline">
+ Registration
+ </div>
+ </td>
+ </tr>
+ <tr>
+ <td style="vertical-align:bottom;border-top:none;!important">
+ <div class="align-baseline">
+ 09:00 - 09:30
+ </div>
+ </td>
+ <td style="vertical-align:bottom;border-top:none;!important">
+ <div class="align-baseline">
+ Inauguration
+ </div>
+ </td>
+ </tr>
+ <tr>
+ <td style="vertical-align:bottom;border-top:none;!important">
+ <div class="align-baseline">
+ 09:30 - 10:30
+ </div>
+ </td>
+ <td style="vertical-align:bottom;border-top:none;!important">
+ <div class="align-baseline">
+ Invited talks
+ </div>
+ </td>
+ </tr>
+ <tr>
+ <td style="vertical-align:bottom;border-top:none;!important">
+ <div class="align-baseline">
+ 10:30 - 11:00
+ </div>
+ </td>
+ <td style="vertical-align:bottom;border-top:none;!important">
+ <div class="align-baseline">
+ Tea
+ </div>
+ </td>
+ </tr>
+ <tr>
+ <td style="vertical-align:bottom;border-top:none;!important">
+ <div class="align-baseline">
+ 11:00 - 01:00
+ </div>
+ </td>
+ <td style="vertical-align:bottom;border-top:none;!important">
+ <div class="align-baseline">
+ Oral Presentations
+ </div>
+ </td>
+ </tr>
+ <tr>
+ <td style="vertical-align:bottom;border-top:none;!important">
+ <div class="align-baseline">
+ 01:00 - 02:00
+ </div>
+ </td>
+ <td style="vertical-align:bottom;border-top:none;!important">
+ <div class="align-baseline">
+ Lunch
+ </div>
+ </td>
+ </tr>
+ <tr>
+ <td style="vertical-align:bottom;border-top:none;!important">
+ <div class="align-baseline">
+ 02:00 - 04:00
+ </div>
+ </td>
+ <td style="vertical-align:bottom;border-top:none;!important">
+ <div class="align-baseline">
+ DWSIM/OpenModelica Workshop
+ </div>
+ </td>
+ </tr>
+ <tr>
+ <td style="vertical-align:bottom;border-top:none;!important">
+ <div class="align-baseline">
+ 04:00 - 04:15
+ </div>
+ </td>
+ <td style="vertical-align:bottom;border-top:none;!important">
+ <div class="align-baseline">
+ Tea
+ </div>
+ </td>
+ </tr>
+ <tr>
+ <td style="vertical-align:bottom;border-top:none;!important">
+ <div class="align-baseline">
+ 04:15 - 05:30
+ </div>
+ </td>
+ <td style="vertical-align:bottom;border-top:none;!important">
+ <div class="align-baseline">
+ Panel Discussion, Valedictory
+ </div>
+ </td>
+ </tr>
+
+
+ </table>
+ </div>
</div>
</div>
</section>
@@ -330,86 +505,13 @@
<div class="row">
<div class="col-sm-6">
<a href="https://fossee.in" class="organiser-box organiser-box-1" target="_blank"></a>
- <!-- <p class="text-justify">NCCPS conference is organised by the team members of FOSSEE project which is part of the National Mission on Education through ICT with the thrust area being Adaptation and deployment of open source simulation packages equivalent to proprietary software, funded by MHRD, based at the Indian Institute of Technology Bombay (IITB). </p> -->
</div>
<div class="col-sm-6">
<a href="https://www.che.iitb.ac.in/online/" class="organiser-box organiser-box-2" target="_blank"></a>
</div>
</div>
- <!-- <div class="row">
- <div class="col-sm-12">
- <p class="text-justify">NCCPS conference is organised by the team members of FOSSEE project which is part of the National Mission on Education through ICT with the thrust area being Adaptation and deployment of open source simulation packages equivalent to proprietary software, funded by MHRD, based at the Indian Institute of Technology Bombay (IITB). </p>
- </div>
- </div> -->
</section>
-<!--
- <section id="sponsor" class="section sponsor">
- <div class="container">
- <div class="row">
- <div class="col-md-12">
- <h3 class="section-title">Sponsor</h3>
- </div>
- </div>
- <div class="row">
- <div class="col-sm-12">
- <a href="http://mhrd.gov.in" class="sponsor-box sponsor-box-1" target="_blank"></a>
- </div>
- </div>
- <div class="row">
- <div class="col-sm-12">
- <p class="text-justify">
- Thank you for your interest to sponsor Scipy India 2018.</p>
-<p class="text-justify">
- NCCPS India, an annual conference organized by FOSSEE (Free and Open Source Software for Education) based at IIT Bombay, provides the opportunity to unfurl the use of the Python programming language in the Scientific Computing community in India. NCCPS India being organized since 2009, attracts more than 250 students and faculty every year. This conference provides the participants with a unique opportunity to interact and connect with the Python community.
-</p><p class="text-justify">
- Here’s a call to the interested organizations to sponsor this conference and get associated with the event. Through this sponsorship, you could engage with top professionals and enhance your organization’s brand visibility amongst Python users.
- </p>
- </div>
- </div>
- </section>
-
- <section id="write-us" class="section write-us">
- <div class="container">
- <div class="row">
- <div class="col-md-12">
- <h3 class="section-title">Write to Us</h3>
- <p><h5>Feel free to send us an email if you have any questions.</h5></p>
- </div>
- </div>
-
- <form action="#" id="registration-form">
- <div class="row">
- <div class="col-md-12" id="registration-msg" style="display:none;">
- <div class="alert"></div>
- </div>
- <div class="col-sm-12">
- <div class="form-group">
- <input type="text" class="form-control" placeholder="First Name" id="fname" name="fname" required>
- </div>
-
- <div class="form-group">
- <input type="text" class="form-control" placeholder="Last Name" id="lname" name="lname" required>
- </div>
-
- <div class="form-group">
- <input type="email" class="form-control" placeholder="Email" id="email" name="email" required>
- </div>
- </div>
-
- <div class="col-sm-12">
- <div class="form-group">
- <input type="textarea" class="form-control" placeholder="Your Query" id="query" name="query" required>
- </div>
- </div>
- </div>
- <div class="text-center mt20">
- <button type="submit" class="btn btn-black" id="registration-submit-btn">Submit</button>
- </div>
- </form>
- </div>
- </section> -->
-
<section id="contact-us" class="section contact-us">
<div class="container">
<div class="row">
@@ -460,25 +562,19 @@
</div>
</div>
</section>
-
-<div class="modal fade spkrmodal" id="registermdl" role="dialog">
- <div class="modal-dialog">
-
- <!-- Modal content-->
- <div class="modal-content">
- <div class="modal-header">
- <button type="button" class="close" data-dismiss="modal">&times;</button>
- </div>
- <div class="modal-body">
- <p class="text-justify">Registrations open from 15 September</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="registermdl" role="dialog">
+ <div class="modal-dialog">
+ <div class="modal-content">
+ <div class="modal-header">
+ <button type="button" class="close" data-dismiss="modal">&times;</button>
+ </div>
+ <div class="modal-body">
+ <p class="text-justify">Registrations open from 15 September</p>
+ </div>
+ <div class="modal-footer">
+ <button type="button" class="btn btn-info" data-dismiss="modal">Close</button>
+ </div>
+ </div>
+ </div>
+</div>
{% endblock %}
diff --git a/static/website/templates/navbar.html b/static/website/templates/navbar.html
index 41a1106..ce70dcc 100644
--- a/static/website/templates/navbar.html
+++ b/static/website/templates/navbar.html
@@ -32,28 +32,23 @@
<!-- navigation menu -->
<li class="active"><a data-scroll href="{{SITE_URL}}/#about">About</a></li>
<li><a data-scroll href="{{SITE_URL}}/#speakers">Speakers</a></li>
- <li><a data-scroll href="{{SITE_URL}}/#submit">CFP</a></li>
+ <li><a data-scroll href="{{SITE_URL}}/#registration">Register</a></li>
+ <!-- <li><a data-scroll href="{{SITE_URL}}/#submit">CFP</a></li> -->
<li><a data-scroll href="{{SITE_URL}}/#coc">C0C</a></li>
+ <li><a data-scroll href="{{SITE_URL}}/#schedule">Schedule</a></li>
<li><a data-scroll href="{{SITE_URL}}/#location">Venue</a></li>
<li><a data-scroll href="{{SITE_URL}}/#organiser">Organiser</a></li>
<li><a data-scroll href="{{SITE_URL}}/#contact-us">Contact Us</a></li>
- <li><a class="btn" data-toggle="modal" data-target="#registermdl">Register</a></li>
- <!--<li><a data-scroll href="{{SITE_URL}}/#schedule">Schedule</a></li>
- <li><a data-scroll href="{{SITE_URL}}/#sponsor">Sponsor</a></li>
- <li><a data-scroll href="{{SITE_URL}}/#faq">FAQ</a></li>
- <li><a data-scroll href="{{SITE_URL}}/#photos">Photos</a></li>
- <li><a data-scroll href="{{SITE_URL}}/#team">Team</a></li> -->
- <!-- {% if user.is_authenticated %}
+ {% if user.is_authenticated %}
<li><a href="{% url 'login' %}"><i class="fa fa-user" aria-hidden="true"></i>
{{ user.username }}!</a></li>
<li><a href="{% url 'logout' %}">logout</a></li>
{% else %}
- <li><a href="{% url 'login' %}">login</a></li>
- {% endif %} -->
+ <li><a href="{% url 'website:cfp' %}">cfp</a></li>
+ {% endif %}
</ul>
</div>
</div><!-- /.container -->
</nav>
-
{% endblock %}
diff --git a/static/website/templates/registration/password_change_done.html b/static/website/templates/registration/password_change_done.html
new file mode 100755
index 0000000..67fd9a6
--- /dev/null
+++ b/static/website/templates/registration/password_change_done.html
@@ -0,0 +1,47 @@
+
+{% load static %}
+
+<!DOCTYPE HTML>
+<html>
+ <head>
+ <meta charset="utf-8">
+ <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
+ <meta name="description" content="">
+ <meta name="author" content="">
+ <link rel="icon" href="{% static 'img/fevicon.png'%}" type="icon">
+ <title>SciPy India 2017</title>
+ <!-- Bootstrap core CSS -->
+ <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
+ <link href="{% static 'vendor/bootstrap/css/bootstrap.min.css' %}" rel="stylesheet">
+ <!-- Custom styles for this template -->
+ <link href="{% static 'css/one-page-wonder.css' %}" rel="stylesheet">
+ </head>
+ <body>
+
+
+ {% block header %}
+ <header id="header1" style="background-color: #01c3d9;">
+ <center>
+ <h1>SciPy India 2017</h1>
+ <h2>Reset Password</h2>
+ </center>
+ </header>
+{% endblock %}
+
+{% block content %}
+<div id="wrapper" style="margin-left: 10%;">
+<div id="main">
+<section id="content" class="main">
+
+<script type="text/javascript">
+ window.setTimeout(function()
+ {
+ location.href="{{ URL_ROOT }}/accounts/"
+ }, 2000);
+</script>
+<h3>Your password has been changed successfully.</h3>
+<h4>Redirecting ...</h4>
+</section>
+</div>
+</div>
+{% endblock %} \ No newline at end of file
diff --git a/static/website/templates/registration/password_change_form.html b/static/website/templates/registration/password_change_form.html
new file mode 100755
index 0000000..a27c585
--- /dev/null
+++ b/static/website/templates/registration/password_change_form.html
@@ -0,0 +1,49 @@
+
+{% load static %}
+
+<!DOCTYPE HTML>
+<html>
+ <head>
+ <meta charset="utf-8">
+ <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
+ <meta name="description" content="">
+ <meta name="author" content="">
+ <link rel="icon" href="{% static 'img/fevicon.png'%}" type="icon">
+ <title>SciPy India 2017</title>
+ <!-- Bootstrap core CSS -->
+ <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
+ <link href="{% static 'vendor/bootstrap/css/bootstrap.min.css' %}" rel="stylesheet">
+ <!-- Custom styles for this template -->
+ <link href="{% static 'css/one-page-wonder.css' %}" rel="stylesheet">
+ </head>
+ <body>
+
+
+ {% block header %}
+ <header id="header1" style="background-color: #01c3d9;">
+ <center>
+ <h1>SciPy India 2017</h1>
+ <h2>Reset Password</h2>
+ </center>
+</header>
+{% endblock %}
+
+{% block content %}
+<div id="wrapper" style="margin-left: 10%;">
+<div id="main">
+<section id="content" class="main">
+<br>
+<form action="" method="post" >
+ {% csrf_token %}
+ <center>
+ <table class=span1>
+ {{ form }}
+ </table>
+ </center>
+ <center><button class="btn" type="submit">Change Password</button>
+ <button class="btn btn-primary gradient" type="button" name="button" onClick='location.replace("{{URL_ROOT}}/accounts/");'>Cancel</button></center>
+</form>
+</section>
+</div>
+</div>
+{% endblock %}
diff --git a/static/website/templates/registration/password_reset_complete.html b/static/website/templates/registration/password_reset_complete.html
new file mode 100755
index 0000000..b8a6131
--- /dev/null
+++ b/static/website/templates/registration/password_reset_complete.html
@@ -0,0 +1,41 @@
+
+{% load static %}
+
+<!DOCTYPE HTML>
+<html>
+ <head>
+ <meta charset="utf-8">
+ <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
+ <meta name="description" content="">
+ <meta name="author" content="">
+ <link rel="icon" href="{% static 'img/fevicon.png'%}" type="icon">
+ <title>SciPy India 2017</title>
+ <!-- Bootstrap core CSS -->
+ <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
+ <link href="{% static 'vendor/bootstrap/css/bootstrap.min.css' %}" rel="stylesheet">
+ <!-- Custom styles for this template -->
+ <link href="{% static 'css/one-page-wonder.css' %}" rel="stylesheet">
+ </head>
+ <body>
+
+
+ {% block header %}
+ <header id="header1" style="background-color: #01c3d9;">
+ <center>
+ <h1>SciPy India 2017</h1>
+ <h2>Reset Password</h2>
+ </center>
+ </header>
+{% endblock %}
+
+{% block content %}
+<div id="wrapper" style="margin-left: 10%;">
+<div id="main">
+<section id="content" class="main">
+<br>
+<p>Your password has been reset. </p>
+<p>Please <a href="{% url 'website:cfp' %}">Log in</a> with your new password.</p>
+</section>
+</div>
+</div>
+{% endblock %}
diff --git a/static/website/templates/registration/password_reset_confirm.html b/static/website/templates/registration/password_reset_confirm.html
new file mode 100755
index 0000000..895e30d
--- /dev/null
+++ b/static/website/templates/registration/password_reset_confirm.html
@@ -0,0 +1,91 @@
+{% load static %}
+
+<!DOCTYPE HTML>
+<html>
+ <head>
+ <meta charset="utf-8">
+ <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
+ <meta name="description" content="">
+ <meta name="author" content="">
+ <link rel="icon" href="{% static 'img/fevicon.png'%}" type="icon">
+ <title>SciPy India 2017</title>
+ <!-- Bootstrap core CSS -->
+ <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
+ <link href="{% static 'vendor/bootstrap/css/bootstrap.min.css' %}" rel="stylesheet">
+ <!-- Custom styles for this template -->
+ <link href="{% static 'css/one-page-wonder.css' %}" rel="stylesheet">
+ </head>
+ <body>
+
+
+ {% block header %}
+ <header id="header1" style="background-color: #01c3d9;">
+ <center>
+ <h1>SciPy India 2017</h1>
+ <h2>Reset Password</h2>
+ </center>
+ </header>
+{% endblock %}
+
+{% block content %}
+<div id="wrapper" style="margin-left: 10%;">
+<div id="main">
+<section id="content" class="main">
+ {% if validlink %}
+ <br>
+ <p>Please enter your new password twice.</p>
+ <br>
+ <form action="" method="post">
+ <div style="display:none">
+ <input type="hidden" value="{{ csrf_token }}" name="csrfmiddlewaretoken">
+ </div>
+ <table>
+ <colgroup>
+ <col width="40%" />
+ <col width="60%" />
+ </colgroup>
+ <tr>
+ <td>{{ form.new_password1.errors }}
+ <label for="id_new_password1" >New password:</label></td>
+ <td>{{ form.new_password1 }}</td>
+ </tr>
+ <tr>
+ <td>{{ form.new_password2.errors }}
+ <label for="id_new_password2" >Confirm password:</label></td>
+ <td>{{ form.new_password2 }}</td>
+ </tr>
+ <tr>
+ <td></td>
+ <td><br> <button class= "btn btn-sm btn-primary gradient" type="submit" onclick="return checkform(this);">Submit</button>
+ </tr>
+ <br>
+ </table>
+ </form>
+ {% else %}
+ <p>The password reset link is invalid,
+ possibly because it has already been used. <br />
+ Please request a new password reset.</p><br/>
+ {% endif %}
+</section>
+</div>
+</div>
+
+<script>
+function checkform(form) {
+ // alert("in");
+ var pwd1 = document.getElementById("id_new_password1");
+ // alert(pwd1.value);
+ var pwd2 = document.getElementById("id_new_password2");
+ //return false;
+ if(pwd1.value.length && pwd2.value.length < 8) {
+
+ alert("Error: Password must contain at least eight characters!");
+ pwd1.focus();
+ pwd1.value = "";
+ pwd2.value = "";
+ return false;
+ }
+}
+
+</script>
+{% endblock %}
diff --git a/static/website/templates/registration/password_reset_done.html b/static/website/templates/registration/password_reset_done.html
new file mode 100755
index 0000000..e161e5e
--- /dev/null
+++ b/static/website/templates/registration/password_reset_done.html
@@ -0,0 +1,41 @@
+{% load static %}
+
+<!DOCTYPE HTML>
+<html>
+ <head>
+ <meta charset="utf-8">
+ <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
+ <meta name="description" content="">
+ <meta name="author" content="">
+ <link rel="icon" href="{% static 'img/fevicon.png'%}" type="icon">
+ <title>SciPy India 2017</title>
+ <!-- Bootstrap core CSS -->
+ <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
+ <link href="{% static 'vendor/bootstrap/css/bootstrap.min.css' %}" rel="stylesheet">
+ <!-- Custom styles for this template -->
+ <link href="{% static 'css/one-page-wonder.css' %}" rel="stylesheet">
+ </head>
+ <body>
+
+<center>
+ {% block header %}
+ <header id="header1" style="background-color: #01c3d9;">
+ <br>
+ <h1>SciPy India 2017</h1>
+ <h2>Reset Password</h2>
+ <br>
+</header>
+</center>
+{% endblock %}
+
+
+{% block content %}
+<div id="wrapper">
+<div id="main">
+<section id="content" class="main" style="margin-left: 10%;">
+<br>
+ If an account exists with this email, you would receive the password reset instructions shortly. Please check your spam folder too.<br/>
+</section>
+</div>
+</div>
+ {% endblock %}
diff --git a/static/website/templates/registration/password_reset_form.html b/static/website/templates/registration/password_reset_form.html
new file mode 100755
index 0000000..b5d900a
--- /dev/null
+++ b/static/website/templates/registration/password_reset_form.html
@@ -0,0 +1,26 @@
+{% extends "base.html" %}
+{% load static %}
+ {% block content %}
+<section id="password_reset" class="section password_reset container-fluid">
+<div class="container">
+
+<div><h4> Recovery Email </h4></div>
+<br>
+ Kindly enter your email ID used for registration. The password reset link will be mailed to the same.
+<br><br>
+<form action="" method="post">
+ {% csrf_token %}
+ {{ form.email.errors }}
+ <p><label for="id_email">E-mail address:</label> {{ form.email }}
+
+ <br/>
+ <br><input type="submit" class ="btn btn-primary gradient" style="border: none;" value="Reset Password" /></p>
+
+ <!-- <button class="btn btn-sm btn-primary" type="submit">Request</button>
+ <a class="btn btn-sm " href="{{URL_ROOT}}/accounts/login/">Cancel</a> -->
+</form>
+</div>
+
+<div class="row" style="margin-top: 4vh;"></div>
+</section>
+{% endblock %}
diff --git a/static/website/templates/submit-cfw.html b/static/website/templates/submit-cfw.html
new file mode 100755
index 0000000..efc746b
--- /dev/null
+++ b/static/website/templates/submit-cfw.html
@@ -0,0 +1,102 @@
+{% extends "base.html" %}
+{% load static %}
+{% load widget_tweaks %}
+{% block content %}
+
+<section id="submitcfw" class="section submitcfw">
+ <div class="container">
+ <p>
+ <center>
+ <h2>Submit Workshop Proposal</h2>
+ </center>
+ </p>
+ <hr>
+ {% if proposals_w >= 1 %} You have exceeded the workshop proposal submission limit.
+ You may view your submitted proposals by clicking
+
+ <a href="{% url 'website:view_abstracts' %}" class="btn "> here</a>
+ {% else %}
+ <h2>
+ <u>Proposal Guidelines</u>
+ </h2>
+ <!-- <li>To be announced</li><br> -->
+ <ul>
+ <li>Please note that there are two parallel tracks, one for beginners and one for advanced users.</li>
+ <li>Please make sure the workshops are hands-on with plenty of exercises for the users.</li>
+ <li>It is usually a good idea to pick a particular problem or set of problems and orient your workshop around how to solve those using the package you plan to talk about.</li>
+ <li>Please provide us with links to any resources you have already prepared for the workshop.</li>
+ <li>The more detail you provide on your workshop, the easier it will be for us to pick it.</li>
+ <li>
+ Provide us with the following sections:
+ <ul>
+ <li>Duration</li>
+ <li>Track: beginner or advanced</li>
+ <li>Intended audience</li>
+ <li>Why should someone attend your workshop? What will they get at the end of it?</li>
+ <li>Outline of workshop with a reasonable breakup in terms of time.</li>
+ <li>Possibly provide any material or similar material you plan to use.</li>
+ <li>A small paragraph about you with an emphasis on your experience in the area and teaching this material. Essentially, why are you well suited to teach this workshop?</li>
+ </ul>
+ </li>
+ </ul>
+ <form action="" method=POST>
+ <div class="form-group">
+ <label for="about_me">About me
+ <span style="color:red;">*</span>:
+ </label>
+ {% render_field proposal_form.about_me %}
+ </div>
+ <div class="form-group">
+ <label for="phone">Phone
+ <span style="color:red;">*</span>:
+ </label>
+ {% render_field proposal_form.phone %}
+ </div>
+ <div class="form-group">
+ <label for="title">Title
+ <span style="color:red;">*</span>:
+ </label>
+ {% render_field proposal_form.title %}
+ </div>
+ <div class="form-group">
+ <label for="dispositiont">Disposition (Min. 300 char.)
+ <span style="color:red;">*</span>:
+ </label>
+ {% render_field proposal_form.abstract %}
+ <label>Charater count:
+ <div id="charNum"></div>
+ </label>
+ </div>
+ <div class="form-group">
+ <label for="duration">Duration (Mins.)
+ <span style="color:red;">*</span>:
+ </label>
+ {% render_field proposal_form.duration %}
+ </div>
+ <div class="form-group">
+ <label for="attachment">Attachments:</label>
+ {% render_field proposal_form.attachment %}
+ <div class="form-group">
+ <label for="tags">Tags:</label>
+ {% render_field proposal_form.tags %}
+ </div>
+ </div>
+ <div class="form-inline">
+ <div class="radio">
+ <label for="open_to_share"> I agree to publish my resources of workshop/presentation on this website
+ <span style="color:red;">*</span>:
+ </label>
+ {% render_field proposal_form.open_to_share %}
+ </div>
+ </div>
+ {% render_field proposal_form.proposal_type %}
+ {% csrf_token %}
+ <center>
+ <button id="subbtn" class="btn btn-info" type="submit" >Submit</button>
+ <a href="{% url 'website:view_abstracts' %}" class="btn btn-info" role="button">Back</a>
+ </center>
+ </form>
+ {% endif %}
+ </div>
+ </section>
+{% endblock %}
diff --git a/static/website/templates/user-register.html b/static/website/templates/user-register.html
new file mode 100755
index 0000000..c5ea301
--- /dev/null
+++ b/static/website/templates/user-register.html
@@ -0,0 +1,43 @@
+{% extends "base.html" %}
+{% load static %}
+<div class="se-pre-con"></div>
+{% block content %}
+ <section id="register" class="section register">
+ <div class="container">
+ <center>
+ <h2>Register</h2>
+ </center>
+ {% if email_registered %}
+ <center>
+ <div class="alert" style="width:300px;height:50px;">
+ <a class="close" data-dismiss="alert" href="#">&times;</a>
+ <p>Email ID is already registered !</p>
+ </div>
+ <p style="line-height:5px;">Have you already logged in using social logins ?</p>
+ <p style="line-height:5px;">or</p>
+ <p style="line-height:5px;"><a href="{% url 'website:forgotpassword' %}">Click Here</a> if you forgot your username or password</p>
+ </center>
+ {% endif %}
+ {% if registration_complete %}
+ <p> Your Account is Created Successfully !</p>
+ {% endif %}
+ <!-- <div class = "col-md-7">
+ <div id = "my_form"> -->
+ <form action="" method="POST">
+
+ {% csrf_token %}
+ {% for field in form %}
+ <p>{{ field.label}}
+ {% if field.field.required %} <span style="color:red;">*</span> {% endif %}
+ {{ field }}
+ </p>
+ <a style="color:red; ">{{ field.errors }}</a>
+ {% endfor %}
+ <br>
+ <button class="btn btn-primary" type="submit" >SignUp</button>
+ <a class="btn btn-primary" href="{% url 'website:cfp' %}" style="text-decoration: none;">I have an account</a>
+ <!-- </div> -->
+ </form>
+ <!--</div>-->
+ </section>
+{% endblock %}