summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSharanya A2019-07-29 11:38:13 +0530
committerSharanya A2019-07-29 11:38:13 +0530
commit1f90b97eedb702c53ec71d2ff097e5d8e3b4f36b (patch)
tree9b06fe480a194d6587ee6d1e67c7421041a63b2a
parent4718ea7c6e3f56302f3913c5e83d1ef2632de149 (diff)
downloadFOSSEE_animations-1f90b97eedb702c53ec71d2ff097e5d8e3b4f36b.tar.gz
FOSSEE_animations-1f90b97eedb702c53ec71d2ff097e5d8e3b4f36b.tar.bz2
FOSSEE_animations-1f90b97eedb702c53ec71d2ff097e5d8e3b4f36b.zip
html/css changes to buttons
-rw-r--r--fossee_manim/templates/fossee_manim/index.html6
-rw-r--r--fossee_manim/templates/fossee_manim/login.html10
2 files changed, 9 insertions, 7 deletions
diff --git a/fossee_manim/templates/fossee_manim/index.html b/fossee_manim/templates/fossee_manim/index.html
index f37d79b..e0ba5a5 100644
--- a/fossee_manim/templates/fossee_manim/index.html
+++ b/fossee_manim/templates/fossee_manim/index.html
@@ -75,7 +75,7 @@
<!-- Remove sticky-top if the buttons are not supposed to scroll down-->
<div class="jumbotron row sticky-top" style="padding-top: 90px; padding-bottom: 0.2%; margin-bottom: 0px; color:#dddddd">
<div class="btn-group btn-group-lg" role="group">
- <button class="btn btn-link perma_link" type="button"><a href="#" style="color:#157b80">About</a></button>
+ <button class="btn btn-link perma_link" type="button"><a href="{% url 'about' %}" style="color:#157b80">About</a></button>
<button class="btn btn-link perma_link" type="button"><a href="{% url 'guidelines' %}" style="color:#222222">Guidelines</a></button>
<button class="btn btn-link perma_link" type="button"><a href="{% url 'faqs' %}" style="color:#222222">FAQ</a></button>
<button class="btn btn-link perma_link" type="button"><a href="{% url 'honorarium' %}" style="color:#222222">Honorarium</a></button>
@@ -129,10 +129,12 @@
<!--Infographics-->
- <div class="jumbotron row text-center" style="background-color: white"> <!-- style="background-image: url(''); background-size: cover;">-->
+ <div class="jumbotron row text-center" style="background-color: white; margin: 10px;">
<div class="container text-center">
<h1 style="color: #e45700"><b>HOW IT WORKS</b></h1>
<img class="img-fluid d-block text-center" width="100%" src="{{ URL_ROOT }}/static/img/info.svg" alt="Infographic">
+ <br>
+ Want to know more? Visit our <a href="{{URL_ROOT}}/guidelines/" style="background-color:#157b80; color:white;">Guidelines</a> page!
</div>
</div>
diff --git a/fossee_manim/templates/fossee_manim/login.html b/fossee_manim/templates/fossee_manim/login.html
index 611f6ca..ae42718 100644
--- a/fossee_manim/templates/fossee_manim/login.html
+++ b/fossee_manim/templates/fossee_manim/login.html
@@ -8,7 +8,6 @@
<div class="container" align="center">
<br>
<h3>Login</h3>
- <br>
<form method="post">
{% csrf_token %}
<table class="table table-bordered">
@@ -16,10 +15,11 @@
<br>
<br>
</table>
- <button class="btn btn-success btn-sm" type="submit">Login</button>
- <a href="{{URL_ROOT}}/forgotpassword/" class="btn btn-default btn-sm" style="color:#3693C0;">Forgot Password</a>
- <br>
+ <button class="btn btn-success btn-sm" type="submit" style="background-color:#e45700;color:white; border:0px">Login</button>
+ <a href="{{URL_ROOT}}/forgotpassword/" class="btn btn-default btn-sm" style="color:#1facb3;">Forgot Password?</a>
</form>
<br>
+ Don't have an account yet? <a href="{{URL_ROOT}}/register/" style="background-color:#157b80; color:white;">Register here!</a>
+ <br><br>
</div>
- {% endblock %} \ No newline at end of file
+ {% endblock %}