Commit 53924e250377d63f744c6a5df3dfbb5936abb36b
1 parent
d7e71522
Exists in
master
and in
8 other branches
Move 'login' button to out of navbar
Showing
2 changed files
with
5 additions
and
4 deletions
Show diff stats
src/app/components/navbar/navbar.html
... | ... | @@ -21,10 +21,6 @@ |
21 | 21 | <!-- <li><a ui-sref="duvidas">Dúvidas</a></li> --> |
22 | 22 | <!-- <li><a ui-sref="respostas">Respostas</a></li> --> |
23 | 23 | </ul> |
24 | - | |
25 | - <ul class="nav navbar-nav navbar-right"> | |
26 | - <li><a ui-sref="login"><span class="glyphicon glyphicon-user"></span> Entrar</a></li> | |
27 | - </ul> | |
28 | 24 | </div> |
29 | 25 | </div> |
30 | 26 | </nav> | ... | ... |
src/app/partials/header/header.html
... | ... | @@ -5,6 +5,11 @@ |
5 | 5 | <button type="button" id="display-contrast" class="btn btn-link" ng-click="toggleContrast()"> |
6 | 6 | <span class="glyphicon glyphicon-adjust" aria-hidden="true"></span> Alto Contraste |
7 | 7 | </button> |
8 | + | |
9 | + <button type="button" class="btn btn-link pull-right" ui-sref="login"> | |
10 | + <span class="glyphicon glyphicon-user"></span> | |
11 | + Entrar | |
12 | + </button> | |
8 | 13 | </div> |
9 | 14 | </div> |
10 | 15 | ... | ... |