Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 21 additions & 0 deletions website/templates/base.html
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,28 @@
<button class="btn btn-default" style="float:right; height:43px; font-size:14px;margin-top:3px; margin-right:15px; color:#dd4252">
Login
</button>
</a>
<a href="/accounts/login">
<button class="btn btn-default btn-caution" style="float:right; height:43px; font-size:14px;margin-top:3px; margin-right:15px; color:#dd4252">
<i class="fa fa-envelope fa-2x"></i>
</button>
</a>
<a href="{% provider_login_url "facebook" method="js_sdk" %}">
<button class="btn btn-default btn-caution" style="float:right; height:43px; font-size:14px;margin-top:3px; margin-right:15px; color:#dd4252">
<i class="fa fa-facebook fa-2x"></i>
</button>
</a>
<a href="{% provider_login_url "google" method="js_sdk" %}">
<button class="btn btn-default btn-caution" style="float:right; height:43px; font-size:14px;margin-top:3px; margin-right:15px; color:#dd4252">
<i class="fa fa-google fa-2x"></i>
</button>
</a>
<a href="{% provider_login_url "github" method="js_sdk" %}">
<button class="btn btn-default btn-caution" style="float:right; height:43px; font-size:14px;margin-top:3px; margin-right:15px; color:#dd4252">
<i class="fa fa-github fa-2x"></i>
</button>
</a>

{% endif %}
</ul>
</nav>
Expand Down
27 changes: 1 addition & 26 deletions website/templates/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -68,32 +68,7 @@ <h1 class="page-header">Win points for reporting bugs on any website!
<div class="form-group">
<button type="submit" id="btn" class="btn btn-default btn-danger" style="background:#dd4252; height:43px; font-size:14px;">Report Bug</button>
</form>
<label style="color:#dd4252; margin-left: 20px"> Win +3 points!</label>
{% if not user.is_authenticated %}
<a href="/accounts/login">
<button class="btn btn-default btn-caution" style="float:right;">
<i class="fa fa-envelope fa-2x"></i>
</button>
</a>
<a href="{% provider_login_url "facebook" method="js_sdk" %}">
<button class="btn btn-default btn-caution" style="float:right;">
<i class="fa fa-facebook fa-2x"></i>
</button>
</a>
<a href="{% provider_login_url "google" method="js_sdk" %}">
<button class="btn btn-default btn-caution" style="float:right;">
<i class="fa fa-google fa-2x"></i>
</button>
</a>
<a href="{% provider_login_url "github" method="js_sdk" %}">
<button class="btn btn-default btn-caution" style="float:right;">
<i class="fa fa-github fa-2x"></i>
</button>
</a>
<a href="/accounts/login">
<button class="btn btn-default btn-caution" style="color:#dd4252; float:right; height:43px; font-size:14px;">Login</button>
</a>
{% endif %}
<label style="color:#dd4252; margin-left: 20px"> Win +3 points!</label>
</div>

</div>
Expand Down