mirror of https://github.com/rancher/ui.git
22 lines
356 B
Handlebars
22 lines
356 B
Handlebars
{{#if conceal}}
|
|
{{input
|
|
value=value
|
|
classNames="form-control conceal"
|
|
}}
|
|
{{else}}
|
|
{{input
|
|
type="password"
|
|
value=value
|
|
classNames="form-control"
|
|
}}
|
|
{{/if}}
|
|
<span class="input-group-btn">
|
|
<button
|
|
class="btn bg-primary"
|
|
type="button"
|
|
{{action "generate"}}
|
|
>
|
|
{{t "inputPassword.buttonText"}}
|
|
</button>
|
|
</span>
|