mirror of
https://github.com/hashicorp/vault.git
synced 2026-05-28 04:10:44 -04:00
* license: update headers to IBM Corp. * `make proto` * update offset because source file changed Signed-off-by: Ryan Cragun <me@ryan.ec> Co-authored-by: Ryan Cragun <me@ryan.ec>
25 lines
No EOL
713 B
Handlebars
25 lines
No EOL
713 B
Handlebars
{{!
|
|
Copyright IBM Corp. 2016, 2025
|
|
SPDX-License-Identifier: BUSL-1.1
|
|
}}
|
|
|
|
{{! Auth methods with standard login flows use this template. To implement any custom logic, this template should be copied into a new hbs file for that method. }}
|
|
|
|
<form {{on "submit" this.onSubmit}} data-test-auth-form={{@authType}}>
|
|
|
|
{{yield to="namespace"}}
|
|
|
|
<div class="has-padding-l">
|
|
{{yield to="back"}}
|
|
{{yield to="authSelectOptions"}}
|
|
{{yield to="error"}}
|
|
|
|
<Auth::Fields @loginFields={{this.loginFields}} />
|
|
|
|
{{yield to="advancedSettings"}}
|
|
|
|
<Auth::SignInButton @text="Sign in" @icon={{if (or this.login.isRunning @loginTransitionIsRunning) "loading"}} />
|
|
|
|
{{yield to="footer"}}
|
|
</div>
|
|
</form> |