Dropdown alignment with the empty state
This commit is contained in:
parent
8f0afb2551
commit
d11efa363c
1 changed files with 11 additions and 7 deletions
|
@ -10,13 +10,17 @@
|
||||||
<p class="">
|
<p class="">
|
||||||
Through Identity Brokering it's easy to allow users to authenticate to Keycloak using external Identity Providers or Social Networks.<br> We have built-in support for OpenID Connect and SAML 2.0 as well as a number of social networks such as Google, GitHub, Facebook and Twitter.
|
Through Identity Brokering it's easy to allow users to authenticate to Keycloak using external Identity Providers or Social Networks.<br> We have built-in support for OpenID Connect and SAML 2.0 as well as a number of social networks such as Google, GitHub, Facebook and Twitter.
|
||||||
</p>
|
</p>
|
||||||
<div class="dropdown" data-ng-show="access.manageIdentityProviders">
|
<div class="row" data-ng-show="access.manageIdentityProviders">
|
||||||
<select class="form-control" ng-model="provider"
|
<div class="col-sm-4 col-sm-offset-4">
|
||||||
ng-options="p.name group by p.groupName for p in allProviders track by p.id"
|
<div class="form-group">
|
||||||
data-ng-change="addProvider(provider); provider = null">
|
<select class="selectpicker form-control" ng-model="provider"
|
||||||
<option value="" disabled selected>{{:: 'add-provider.placeholder' | translate}}</option>
|
ng-options="p.name group by p.groupName for p in allProviders track by p.id"
|
||||||
</select>
|
data-ng-change="addProvider(provider); provider = null">
|
||||||
</div>
|
<option value="" disabled selected>{{:: 'add-provider.placeholder' | translate}}</option>
|
||||||
|
</select>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<form name="realmForm" novalidate class="form-horizontal" ng-show="configuredProviders.length > 0">
|
<form name="realmForm" novalidate class="form-horizontal" ng-show="configuredProviders.length > 0">
|
||||||
<fieldset>
|
<fieldset>
|
||||||
|
|
Loading…
Reference in a new issue