diff options
author | Sashi20 | 2018-09-19 11:53:02 +0530 |
---|---|---|
committer | Sashi20 | 2018-09-19 11:53:02 +0530 |
commit | f1874b0e0f5c32fcb2ab3075070a57064f4ed53f (patch) | |
tree | 316ce31e8cbf7cd1f9361ff958d90dab2cdb3948 /static/website/templates | |
parent | 0559705f7d919aa9c28547de9195cc479e7273b1 (diff) | |
download | nccps-2018-f1874b0e0f5c32fcb2ab3075070a57064f4ed53f.tar.gz nccps-2018-f1874b0e0f5c32fcb2ab3075070a57064f4ed53f.tar.bz2 nccps-2018-f1874b0e0f5c32fcb2ab3075070a57064f4ed53f.zip |
Added checkbox for terms and conditions in paper submission
Diffstat (limited to 'static/website/templates')
-rw-r--r-- | static/website/templates/home.html | 2 | ||||
-rwxr-xr-x | static/website/templates/submit-cfp.html | 37 |
2 files changed, 38 insertions, 1 deletions
diff --git a/static/website/templates/home.html b/static/website/templates/home.html index 53fcc4d..f554cee 100644 --- a/static/website/templates/home.html +++ b/static/website/templates/home.html @@ -576,5 +576,5 @@ </div> </div> </div> -</div> +</div> {% endblock %} diff --git a/static/website/templates/submit-cfp.html b/static/website/templates/submit-cfp.html index b31658d..5d9ec8b 100755 --- a/static/website/templates/submit-cfp.html +++ b/static/website/templates/submit-cfp.html @@ -38,5 +38,42 @@ </form> {% endif %} </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"> + <h4>Paper</h4> + <ul> + <li>The decision of the organization will be final.</li> + <li>Maximum three authors for one paper are allowed.</li> + <li>The subsidy will be given to the authors of the selected papers, to cover a part of the cost of their accommodation(for 1 night) and part of travel expenses depending on the quality of their work. This will be paid after the conference.</li> + <li>Only one author will get the above subsidy in case of a paper has multiple authors.</li> + <li>The organization reserves all rights to take a decision about this subsidy.</li> + <li>All authors must register for the conference.</li> + </ul> + <h4>Content:</h4> + <ul> + <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> + </section> {% endblock %} |