Commit 391777de388dfe62ccd02ed73af485dc44632eee
1 parent
ad181790
Exists in
master
and in
3 other branches
Adding footer note to login page
Showing
4 changed files
with
36 additions
and
2 deletions
Show diff stats
amadeus/static/css/base/amadeus.css
... | ... | @@ -3,7 +3,6 @@ ul, li { |
3 | 3 | text-decoration: none; |
4 | 4 | } |
5 | 5 | |
6 | - | |
7 | 6 | .pagination > li > a, .pagination > li > span { |
8 | 7 | padding: 0px 8px; |
9 | 8 | } |
... | ... | @@ -586,4 +585,17 @@ ul, li { |
586 | 585 | .theme_img { |
587 | 586 | width: 100%; |
588 | 587 | } |
589 | -/* End Themes */ | |
590 | 588 | \ No newline at end of file |
589 | +/* End Themes */ | |
590 | + | |
591 | +.footer { | |
592 | + position: relative; | |
593 | + bottom: 0px; | |
594 | + padding: 30px 30px; | |
595 | + width: 100%; | |
596 | + margin-top: 15px; | |
597 | + font-family: Roboto; | |
598 | + font-size: 16px; | |
599 | +} | |
600 | +.footer p { | |
601 | + margin: 0px; | |
602 | +} | |
591 | 603 | \ No newline at end of file | ... | ... |
amadeus/static/css/themes/green.css
amadeus/templates/base.html
users/templates/users/login.html
... | ... | @@ -91,5 +91,19 @@ |
91 | 91 | </div> |
92 | 92 | {% endblock%} |
93 | 93 | |
94 | +{% block footer %} | |
95 | + {% if theme.footer_note != '' and theme.footer_note != '<p><br></p>' %} | |
96 | + <div class="footer"> | |
97 | + <div class="row"> | |
98 | + <div class="col-md-12 text-center"> | |
99 | + {% autoescape off %} | |
100 | + {{ theme.footer_note }} | |
101 | + {% endautoescape %} | |
102 | + </div> | |
103 | + </div> | |
104 | + </div> | |
105 | + {% endif %} | |
106 | +{% endblock %} | |
107 | + | |
94 | 108 | {% block bottommenu %} |
95 | 109 | {% endblock %} |
96 | 110 | \ No newline at end of file | ... | ... |