Skip to content
Discussion options

You must be logged in to vote

Here is a detailed example of valid input types:

SELECT 'form' AS component, 'Complete Input Types Reference' AS title;

SELECT 'header' AS type, 'Text Input Types' AS label;

SELECT 'username' AS name, 'text' AS type, 'Enter your username' AS placeholder,
    '**Text** - Default single-line text input. Use for short text like names, usernames, titles. Supports `minlength`, `maxlength`, `pattern` for validation.' AS description_md;

SELECT 'password' AS name, 'password' AS type, '^(?=.*[A-Za-z])(?=.*\d)[A-Za-z\d]{8,}$' AS pattern,
    '**Password** - Masked text input that hides characters. Use for passwords and sensitive data. Combine with `pattern` attribute for password strength requir…

Replies: 3 comments

Comment options

You must be logged in to vote
0 replies
Comment options

You must be logged in to vote
0 replies
Answer selected by Aesth
Comment options

You must be logged in to vote
0 replies
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
2 participants