Commit 5b600706cd178a13e2ca6c3ffabb26650add27b2
1 parent
dbd80467
Exists in
master
and in
5 other branches
Adding logo to user login and register templates #14
Showing
3 changed files
with
3 additions
and
2 deletions
Show diff stats
core/static/css/base/amadeus.css
core/templates/index.html
... | ... | @@ -9,7 +9,7 @@ |
9 | 9 | {% block content %} |
10 | 10 | <div class="row logo-row"> |
11 | 11 | <div class="col-lg-offset-2 col-lg-9"> |
12 | - <img src="..." class="img-responsive center-block " alt="logo amadeus"> | |
12 | + <img src="{% static 'img/amadeus.png' %}" class="img-responsive center-block " alt="logo amadeus" id="logo"> | |
13 | 13 | </div> |
14 | 14 | </div> |
15 | 15 | ... | ... |
core/templates/register_user.html
... | ... | @@ -14,7 +14,7 @@ |
14 | 14 | </div> |
15 | 15 | {% endif %} |
16 | 16 | <div class="row logo-row"> |
17 | - <div class="col-lg-offset-4 col-md-4"> | |
17 | + <div class="col-lg-offset-2 col-lg-9"> | |
18 | 18 | <img src="{% static 'img/amadeus.png' %}" class="img-responsive center-block " alt="logo amadeus" id="logo"> |
19 | 19 | </div> |
20 | 20 | </div> | ... | ... |