Skip to content

Commit

Permalink
Merge 12c8132 into 736f0e9
Browse files Browse the repository at this point in the history
  • Loading branch information
wasswa-derick committed Aug 3, 2018
2 parents 736f0e9 + 12c8132 commit 2fc5b94
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 3 deletions.
6 changes: 6 additions & 0 deletions wger/software/static/css/agency.css
Original file line number Diff line number Diff line change
Expand Up @@ -818,3 +818,9 @@ border: none;
border-radius: 140px;
margin-bottom: 20px;
}

.auth-buttons {
margin-left: 10px;
margin-right: 10px;
border-radius: 24px;
}
6 changes: 3 additions & 3 deletions wger/software/templates/features.html
Original file line number Diff line number Diff line change
Expand Up @@ -24,19 +24,19 @@
<div class="intro-heading">{% trans "Welcome to wger" %}</div>
<div class="intro-lead-in">{% trans "Your body." %} | {% trans "Your workouts." %} | {% trans "Your data." %} | {% trans "Your progress." %}</div>
{% if allow_guest_users and not user.is_authenticated %}
<a href="{% url 'core:user:demo-entries' %}" class="page-scroll btn btn-xl" rel="nofollow" style="margin-top: 1em;">
<a href="{% url 'core:user:demo-entries' %}" class="page-scroll btn btn-xl auth-buttons" rel="nofollow" style="margin-top: 1em;">
{% trans "Try it now" %}
</a>
{% endif %}

{% if not user.is_authenticated or user.userprofile.is_temporary %}
{% if allow_registration %}
<a href="{% url 'core:user:registration' %}" class="page-scroll btn btn-xl" style="margin-top: 1em;">
<a href="{% url 'core:user:registration' %}" class="page-scroll btn btn-xl auth-buttons" style="margin-top: 1em;">
{% trans "Register" %}
</a>
{% endif %}

<a href="{% url 'core:user:login' %}" class="page-scroll btn btn-xl" style="margin-top: 1em;">
<a href="{% url 'core:user:login' %}" class="page-scroll btn btn-xl auth-buttons" style="margin-top: 1em;">
{% trans "Login" %}
</a>
{% endif %}
Expand Down

0 comments on commit 2fc5b94

Please sign in to comment.