vault/ui/app/components/auth/form/userpass.ts
claire bontempo bdf9c4efd5
UI: Smoke test and add mfa validation support for standard methods (#30424)
* =VAULT-34544 userpass

* update args for okta and oidc-jwt

* add todo

* VAULT-34551 tested github login

* VAULT-34550 tested radius login

* VAULT-34545 tested ldap login

* test token
2025-04-28 12:49:27 -07:00

16 lines
293 B
TypeScript

/**
* Copyright (c) HashiCorp, Inc.
* SPDX-License-Identifier: BUSL-1.1
*/
import AuthBase from './base';
/**
* @module Auth::Form::Userpass
* see Auth::Base
* */
export default class AuthFormUserpass extends AuthBase {
loginFields = [{ name: 'username' }, { name: 'password' }];
}