Minor update to make signup/login template better.

This commit is contained in:
Saurabh Kumar 2015-04-26 16:44:41 +05:30
parent eacecd41a3
commit 5fa988b8de
2 changed files with 5 additions and 7 deletions

View File

@ -11,8 +11,6 @@
<div class="container">
<div class="row">
<div class="col-md-5">
<h2>{% trans "Sign In" %}</h2>
{% if socialaccount.providers %}
@ -40,8 +38,8 @@
{% if redirect_field_value %}
<input type="hidden" name="{{ redirect_field_name }}" value="{{ redirect_field_value }}" />
{% endif %}
<a class="button secondaryAction" href="{% url 'account_reset_password' %}">{% trans "Forgot Password?" %}</a>
<button class="btn btn-primary" type="submit">{% trans "Sign In" %}</button>
<a class="button secondaryAction" href="{% url 'account_reset_password' %}">{% trans "Forgot Password?" %}</a>
</form>
</div>
</div>

View File

@ -17,7 +17,7 @@
{% if redirect_field_value %}
<input type="hidden" name="{{ redirect_field_name }}" value="{{ redirect_field_value }}" />
{% endif %}
<button class="btn" type="submit">{% trans "Sign Up" %} &raquo;</button>
<button class="btn btn-primary" type="submit">{% trans "Sign Up" %} &raquo;</button>
</form>