diff options
author | prathamesh | 2015-09-09 17:43:59 +0530 |
---|---|---|
committer | prathamesh | 2015-09-09 17:43:59 +0530 |
commit | e8a8a23253ccd60a417fd2c5484442b86a4073bf (patch) | |
tree | a1b7979117ac48b23fd114a137d02b86affee490 /certificate/templates | |
parent | ed040653112af038130d2db7069d8648b55b1575 (diff) | |
download | certificate-generator-e8a8a23253ccd60a417fd2c5484442b86a4073bf.tar.gz certificate-generator-e8a8a23253ccd60a417fd2c5484442b86a4073bf.tar.bz2 certificate-generator-e8a8a23253ccd60a417fd2c5484442b86a4073bf.zip |
Implemented certificates for eSim faculty meet
Diffstat (limited to 'certificate/templates')
-rw-r--r-- | certificate/templates/esim_download.html | 60 | ||||
-rw-r--r-- | certificate/templates/index.html | 1 |
2 files changed, 61 insertions, 0 deletions
diff --git a/certificate/templates/esim_download.html b/certificate/templates/esim_download.html new file mode 100644 index 0000000..72fd316 --- /dev/null +++ b/certificate/templates/esim_download.html @@ -0,0 +1,60 @@ +{% extends 'base.html' %} +{% block header%} + <h1> eSim Faculty Meet 2015 </h1> +{% endblock %} +{% block content %} + <div class="modal fade" id="invalidModal" tabindex="-1" role="dialog" aria-labelledby="invalidModalLabel" 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">×</span><span class="sr-only">Close</span></button> + <h4 class="modal-title" id="invalidModalLabel">Invalid User/Email</h4> + </div> + <div class="modal-body"> + {% if notregistered == 1 %} + Please enter a proper email address. + {% endif %} + </div> + </div> + </div> + </div> + <form class="col-lg-12" action="{% url 'certificate:esim_download' %}" method="post"> + {% csrf_token %} + {{ message }} + <hr> + <div class="input-group" style="width:340px;text-align:center;margin:0 auto;"> + <input style="width:450;" class="form-control input-lg" placeholder="Enter the email address you used for registration" type="text" id="email" name=email> + <span class="input-group-btn"><button class="btn btn-lg btn-primary" type="submit">Download Certificate</button></span> + </div> + </form> + <center><h4>Problem in downloading the certificate? Write to us at <a href="mailto:certificates@fossee.in">certificates[at]fossee[dot]in</a></h4> + + <div class="modal fade" id="errorModal" tabindex="-1" role="dialog" aria-labelledby="errorModalLabel" 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">×</span><span class="sr-only">Close</span></button> + <h4 class="modal-title" id="invalidModalLabel">Problem in downloading</h4> + </div> + <div class="modal-body"> + Sorry could not process your certificate. Kindly contact the FOSSEE team. + </div> + </div> + </div> + </div> +{% endblock %} + +{% block javascript %} +<script> + $(document).ready(function(){ + error = "{{ error }}" + if(error == "True"){ + $("#errorModal").modal(); + } + notreg = "{{ notregistered }}"; + if(notreg == "1"){ + $("#invalidModal").modal(); + } + }); +</script> +{% endblock %} diff --git a/certificate/templates/index.html b/certificate/templates/index.html index 523268c..aa5adcc 100644 --- a/certificate/templates/index.html +++ b/certificate/templates/index.html @@ -7,6 +7,7 @@ <div style="margin:auto; width:45%"> <p>Below links will take you to a feedback form.<br> Please fill the feedback form and download your <b>e-certificate</b>.</h5></p> <ul class="nav nav-list"> + <li><a href="{% url 'certificate:esim_download' %}" >eSim Faculty Meet 2015</a></li> <li><a href="{% url 'certificate:arduino_google_feedback' %}" >Scilab Arduino Workshop 2015</a></li> <li><a href="{% url 'certificate:dwsim_feedback' %}" >DWSIM Workshop 2015</a></li> <li><a href="{% url 'certificate:tbc_freeeda_download' %}" >FreeEDA Textbook Companion</a></li> |