diff options
-rw-r--r-- | fossee_manim/templates/fossee_manim/index.html | 6 | ||||
-rw-r--r-- | fossee_manim/templates/fossee_manim/login.html | 10 |
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 %} |