14 lines
755 B
HTML
14 lines
755 B
HTML
<span class="external-login-button-element">
|
|
<a ng-class="isLink ? '' : 'btn btn-primary btn-block'"
|
|
ng-if="providerInfo.enabled" ng-click="startSignin()" style="margin-bottom: 10px"
|
|
ng-disabled="signingIn">
|
|
<img ng-src="{{ providerInfo.icon().url }}" ng-if="providerInfo.icon().url">
|
|
<i class="fa" ng-class="providerInfo.icon().icon" ng-if="providerInfo.icon().icon"></i>
|
|
<span class="login-text" ng-if="action != 'attach'" style="vertical-align: middle">
|
|
<span class="prefix">Sign in with </span><span class="suffix">{{ providerInfo.title() }}</span>
|
|
</span>
|
|
<span class="login-text" ng-if="action == 'attach'" style="vertical-align: middle">
|
|
Attach to {{ providerInfo.title() }}
|
|
</span>
|
|
</a>
|
|
</span>
|