17 lines
823 B
HTML
17 lines
823 B
HTML
<span class="external-login-button-element">
|
|
<span ng-if="provider == 'github'">
|
|
<a href="javascript:void(0)" class="btn btn-primary btn-block" quay-require="['GITHUB_LOGIN']" ng-click="startSignin('github')" style="margin-bottom: 10px">
|
|
<i class="fa fa-github fa-lg"></i>
|
|
<span ng-if="action != 'attach'">Sign In with GitHub</span>
|
|
<span ng-if="action == 'attach'">Attach to GitHub Account</span>
|
|
</a>
|
|
</span>
|
|
|
|
<span ng-if="provider == 'google'">
|
|
<a href="javascript:void(0)" class="btn btn-primary btn-block" quay-require="['GOOGLE_LOGIN']" ng-click="startSignin('google')">
|
|
<i class="fa fa-google fa-lg"></i>
|
|
<span ng-if="action != 'attach'">Sign In with Google</span>
|
|
<span ng-if="action == 'attach'">Attach to Google Account</span>
|
|
</a>
|
|
</span>
|
|
</span>
|