Commit 78281dbd51a61fd2e2d3443ee7fca9706a6a0d7a
1 parent
5670fdef
Exists in
master
and in
2 other branches
Modified login template to include contrast stuff
Showing
1 changed file
with
5 additions
and
5 deletions
Show diff stats
users/templates/users/login.html
... | ... | @@ -79,15 +79,15 @@ |
79 | 79 | <div class="col-sm-offset-1 col-md-10 col-lg-10 col-sm-10 col-xs-12"> |
80 | 80 | <div class="col-lg-12 col-md-12 col-sm-12 col-xs-12 text-right forgotPassword"> |
81 | 81 | <a class="pull-right" href="{% url 'users:forgot_pass' %}">{% trans 'Forgot your password?' %}</a> |
82 | - <li class="dropdown language-selector pull-right " style="margin-top:1px;"> | |
82 | + <li class="dropdown language-selector pull-right " style="margin-top:1px;margin-right:10px;"> | |
83 | 83 | {% get_current_language as LANGUAGE_CODE %} |
84 | 84 | <a href="#" class="dropdown-toggle" data-toggle="dropdown" data-close-others="true"> |
85 | 85 | |
86 | 86 | |
87 | - <span>[{{LANGUAGE_CODE}}] </span> | |
87 | + <span >[{{LANGUAGE_CODE}}] </span> | |
88 | 88 | |
89 | 89 | </a> |
90 | - <i class="glyphicon glyphicon-adjust"></i> | |
90 | + <a href="{% url 'themes:contrast'%}" style="margin-left:10px;"><i class="glyphicon glyphicon-adjust"></i></a> | |
91 | 91 | <ul class="dropdown-menu"> |
92 | 92 | |
93 | 93 | |
... | ... | @@ -113,14 +113,14 @@ |
113 | 113 | <div class="col-lg-12 col-md-12 col-sm-12 col-xs-12 text-center forgotPassword"> |
114 | 114 | <a href="{% url 'users:forgot_pass' %}">{% trans 'Forgot your password?' %}</a> |
115 | 115 | |
116 | - <li class="dropdown language-selector pull-right " style="margin-top:1px;"> | |
116 | + <li class="dropdown language-selector pull-right " style="margin-top:1px;margin-right:10px;"> | |
117 | 117 | {% get_current_language as LANGUAGE_CODE %} |
118 | 118 | <a href="#" class="dropdown-toggle" data-toggle="dropdown" data-close-others="true"> |
119 | 119 | |
120 | 120 | <span>[{{LANGUAGE_CODE}}] </span> |
121 | 121 | |
122 | 122 | </a> |
123 | - <i class="glyphicon glyphicon-adjust"></i> | |
123 | + <a href="{% url 'themes:contrast'%}" style="margin-left:10px;"><i class="glyphicon glyphicon-adjust"></i></a> | |
124 | 124 | <ul class="dropdown-menu"> |
125 | 125 | {% get_available_languages as LANGUAGES %} |
126 | 126 | {% get_language_info_list for LANGUAGES as languages %} | ... | ... |