f38a50b6b2
* fetch auth methods when going to the auth route and pass them to the auth form component * add boolean editType for form-fields * look in the data hash in the serializer * remove renderInPlace for info-tooltips as it does something goofy with widths * add new fields for auth methods * fix console refresh command on routes that use lazyPaginatedQuery * add wrapped_token param that logs you in via the token backend and show other backends if your list contains supported ones * handle casing when looking up supported backends * change listingVisibility to match the new API * move wrapped_token up to the vault route level so it works from the app root
24 lines
550 B
Handlebars
24 lines
550 B
Handlebars
<SplashPage as |Page|>
|
|
<Page.header>
|
|
<h1 class="title is-3">
|
|
Sign in to Vault
|
|
</h1>
|
|
</Page.header>
|
|
<Page.content>
|
|
<AuthForm
|
|
@wrappedToken={{wrappedToken}}
|
|
@cluster={{model.cluster}}
|
|
@methods={{model.methods}}
|
|
@redirectTo={{redirectTo}}
|
|
@selectedAuth={{authMethod}}
|
|
/>
|
|
</Page.content>
|
|
<Page.footer>
|
|
<div class="has-short-padding">
|
|
<p class="help has-text-grey-dark">
|
|
Contact your administrator for login credentials
|
|
</p>
|
|
</div>
|
|
</Page.footer>
|
|
</SplashPage>
|