summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--certificate/templates/base.html2
-rw-r--r--certificate/templates/feedback.html15
2 files changed, 12 insertions, 5 deletions
diff --git a/certificate/templates/base.html b/certificate/templates/base.html
index bd0b5b7..7636e1f 100644
--- a/certificate/templates/base.html
+++ b/certificate/templates/base.html
@@ -23,7 +23,7 @@
<div class="col-lg-12 text-center v-center">
- <h1>FOSSEE</h1>
+ <h1>Scilab India Conference 2014</h1>
<hr>
{% block content %}
{% endblock %}
diff --git a/certificate/templates/feedback.html b/certificate/templates/feedback.html
index bddd360..2c1f6b7 100644
--- a/certificate/templates/feedback.html
+++ b/certificate/templates/feedback.html
@@ -1,11 +1,16 @@
{% extends 'base.html' %}
{% block content %}
- <form action="{% url 'certificate:feedback' %}" method="post" style="width:800px">
- <p>Please fill in the feedback form. This will greatly enable us to do better.</p>
+<form action="{% url 'certificate:feedback' %}" method="post" style="width:1000px">
+
+ <div class="input-group" style="padding-left:100px;width:940px;text-align:center;margin:0 auto;">
+ <div align=center style="padding-left:250px"> <h1> Feedback </h1>
+ <p>Please fill in the feedback form. This will greatly enable us to do better.</p>
+ </div>
+
{{ detail }}
{% csrf_token %}
- <div style="padding-left:100px;text-align:left;" >
+ <div style="padding-left:300px;text-align:left;" >
<table class="table">
{{ form }}
</table>
@@ -13,9 +18,11 @@
<label>Q{{ forloop.counter }}. {{ question.question }} </label><br>
<textarea cols="80" class="form-control" id="{{ question.id }}" name="{{ question.id }}"></textarea><br>
{% endfor %}
+ <br></br>
<span><button class="btn btn-lg btn-primary" type="submit">Submit</button></span>
<span><a href="{% url 'certificate:download' %}" >I have already submitted</a></span>
- </div>
+ </div>
+ </div>
</form>
<hr>
{% endblock %}