## AuthForm
The `AuthForm` is used to sign users into Vault.
| Param | Type | Default | Description |
| --- | --- | --- | --- |
| wrappedToken | String
|
| The auth method that is currently selected in the dropdown. |
| cluster | Object
|
| The auth method that is currently selected in the dropdown. This corresponds to an Ember Model. |
| namespace | String
|
| The currently active namespace. |
| redirectTo | String
|
| The name of the route to redirect to. |
| selectedAuth | String
|
| The auth method that is currently selected in the dropdown. |
**Example**
```js
// All properties are passed in via query params.
```
**See**
- [Uses of AuthForm](https://github.com/hashicorp/vault/search?l=Handlebars&q=AuthForm)
- [AuthForm Source Code](https://github.com/hashicorp/vault/blob/master/ui/app/components/auth-form.js)
---