mirror of
https://github.com/hashicorp/vault.git
synced 2025-08-22 23:21:08 +02:00
* update header formats for missed sidebranch files * update more headers that did not fit format
23 lines
662 B
Handlebars
23 lines
662 B
Handlebars
{{!
|
|
Copyright (c) HashiCorp, Inc.
|
|
SPDX-License-Identifier: BUSL-1.1
|
|
}}
|
|
|
|
{{#each @loginFields as |field|}}
|
|
{{#let field.name field.label field.helperText as |name label helperText|}}
|
|
<Hds::Form::TextInput::Field
|
|
{{! For security, we do not support autocomplete at this time }}
|
|
autocomplete="off"
|
|
@type={{this.setInputType name}}
|
|
name={{name}}
|
|
class="has-bottom-margin-m"
|
|
data-test-input={{name}}
|
|
as |F|
|
|
>
|
|
<F.Label>{{or label (capitalize name)}}</F.Label>
|
|
{{#if helperText}}
|
|
<F.HelperText>{{helperText}}</F.HelperText>
|
|
{{/if}}
|
|
</Hds::Form::TextInput::Field>
|
|
{{/let}}
|
|
{{/each}} |