##// END OF EJS Templates
license: change the license to Apache 2.0
license: change the license to Apache 2.0

File last commit:

r83:437edeed
r112:998f0d14
Show More
user-identities-view.html
48 lines | 2.5 KiB | text/html | HtmlLexer
components: componentize user-profile, settings-view, user-identities
r79 <ng-include src="'templates/loader.html'" ng-if="$ctrl.loading.identities"></ng-include>
project: initial commit
r0
components: componentize user-profile, settings-view, user-identities
r79 <div ng-show="!$ctrl.loading.identities">
project: initial commit
r0
<div class="panel panel-default">
components: whole settings panel componentized
r83 <div class="panel-heading" ng-include="'templates/settings_breadcrumbs.html'"></div>
project: initial commit
r0 <div class="panel-body">
<div class="col-sm-6">
components: componentize user-profile, settings-view, user-identities
r79 <p ng-show="$ctrl.identities.length === 0">No external providers linked yet</p>
project: initial commit
r0 <ul class="list-group">
components: componentize user-profile, settings-view, user-identities
r79 <li ng-repeat="provider in $ctrl.identities" class="animate-repeat list-group-item">
project: initial commit
r0 <div class="pull-right">
<span class="dropdown" data-uib-dropdown on-toggle="toggled(open)">
<a class="btn btn-danger btn-xs" data-uib-dropdown-toggle><span class="fa fa-trash-o"></span></a>
<ul class="dropdown-menu">
<li><a>No</a></li>
components: componentize user-profile, settings-view, user-identities
r79 <li><a ng-click="$ctrl.removeProvider(provider)">Yes</a></li>
project: initial commit
r0 </ul>
</span>
</div>
<em>@{{ provider.provider }}</em>: <strong>{{ provider.id }}</strong>
</li>
</ul>
</div>
<div class="col-sm-6">
<ul class="list-group">
<li class="list-group-item">
components: componentize user-profile, settings-view, user-identities
r79 <a href="{{$ctrl.AeConfig.urls.social_auth.google}}" target="_self">
project: initial commit
r0 <span class="fa fa-google-plus-square fa-2x"></span> Connect with Google</a>
</li>
<li class="list-group-item">
components: componentize user-profile, settings-view, user-identities
r79 <a href="{{$ctrl.AeConfig.urls.social_auth.twitter}}" target="_self">
project: initial commit
r0 <span class="fa fa-twitter fa-2x"></span> Connect with Twitter</a>
</li>
<li class="list-group-item">
components: componentize user-profile, settings-view, user-identities
r79 <a href="{{$ctrl.AeConfig.urls.social_auth.bitbucket}}" target="_self">
project: initial commit
r0 <span class="fa fa-bitbucket fa-2x"></span> Connect with Bitbucket</a>
</li>
<li class="list-group-item">
components: componentize user-profile, settings-view, user-identities
r79 <a href="{{$ctrl.AeConfig.urls.social_auth.github}}" target="_self">
project: initial commit
r0 <span class="fa fa-github fa-2x"></span> Connect with Github including private repo access</a>
</li>
</ul>
</div>
</div>
</div>
</div>