This is the simplest form of the input component, used for collecting general text input from users. It can be configured with various parameters to specify the type of input, placeholder text, and other attributes to enhance user experience and ensure proper data collection.
{%- call ui.util.call(show_example) -%} {%- raw %} {{ ui.input(name="name", label="Label", value="Hello", required=true) }} {{ ui.input(name="password", label="Password", type="password", placeholder="Your password") }} {%- endraw %} {%- endcall %}