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

Skip to content
Merged
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
63 changes: 42 additions & 21 deletions website/templates/base.html
Original file line number Diff line number Diff line change
Expand Up @@ -68,46 +68,67 @@
</ul>
</li>
{% else %}
<a href="/accounts/login/">
<a href="/accounts/signup">
<button class="btn btn-default login-button">
Signup
</button>
</a>
<a data-toggle="modal" href="#login">
<button class="btn btn-default login-button">
Login
</button>
</a>
</a>

{% endif %}
<li style="float:left;">
<a href="/start" class="sponsor-hunt">Sponsor a Bug Hunt</a>
</li>
<li style="float:right;"><a id="chrome_ext" href="https://chrome.google.com/webstore/detail/bugheist/bififchikfckcnblimmncopjinfgccme?hl=en" target="_new" class="chrome-plugin">
+ Add to chrome
</a></li>
</ul>
</nav>
<div id="page-wrapper" >
<div class="container" >
{% block content %}
{% endblock %}
</div>
</div>

<div id="login" class="modal" role="dialog">
<div class="modal-dialog" style="margin-top: 200px;">
<div class="modal-content">
<div class="modal-body">
<center>
<a href="/" ><img src="{% static "img/logo-small-transparent.png" %}" style="padding-top: 15px;"></a><hr>
<p>
<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">
<button class="btn btn-default btn-caution" style="height:86px; width: 86px;font-size:28px;margin-top:3px; margin-right:10px; 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">
<button class="btn btn-default btn-caution" style="height:86px; width: 86px;font-size:28px;margin-top:3px; margin-right:10px; 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">
<button class="btn btn-default btn-caution" style="height:86px; width: 86px;font-size:28px;margin-top:3px; margin-right:10px; 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">
<button class="btn btn-default btn-caution" style="height:86px; width: 86px;font-size:28px;margin-top:3px; margin-right:10px; color:#dd4252">
<i class="fa fa-github fa-2x"></i>
</button>
</a>

{% endif %}
<li style="float:left;">
<a href="/start" class="sponsor-hunt">Sponsor a Bug Hunt</a>
</li>
<li style="float:right;"><a id="chrome_ext" href="https://chrome.google.com/webstore/detail/bugheist/bififchikfckcnblimmncopjinfgccme?hl=en" target="_new" class="chrome-plugin">
+ Add to chrome
</a></li>
</ul>
</nav>
<div id="page-wrapper" >
<div class="container" >
{% block content %}
{% endblock %}
</a>
</p>
<p style="font-size: 13px;">Sign in using any of the services listed above and start winning prizes for reporting bugs.</p>
</center>
</div>
</div>

</div>
</div>

<div class="container">
Expand Down