Revert "Fix the flicker of the log on button name"

This change has caused my "Sign In" button to be hidden on the login page.

This reverts commit ce3a0fbdd9.

Closes-Bug: #1651234

Change-Id: I3c0ef6a20ac79c2c3e498a3b692a3165deed81b3
This commit is contained in:
Eric Peterson 2016-12-19 19:16:40 +00:00
parent ce3a0fbdd9
commit 30c3816f6d
1 changed files with 2 additions and 2 deletions

View File

@ -65,9 +65,9 @@
<div class="panel-footer">
{% block login_footer %}
<button id="loginBtn" type="submit" class="btn btn-primary pull-right" ng-cloak>
<button id="loginBtn" type="submit" class="btn btn-primary pull-right">
<span ng-show="auth_type==='credentials'">{% trans "Sign In" %}</span>
<span ng-hide="auth_type==='credentials'">{% trans "Connect" %}</span>
<span ng-hide="auth_type==='credentials'" ng-cloak>{% trans "Connect" %}</span>
</button>
<div class="clearfix"></div>
{% endblock %}