Returns HTML input element.
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
integer, | intent(in) | :: | type |
HTML input type. |
||
logical, | intent(in), | optional | :: | checked |
Input is checked. |
|
logical, | intent(in), | optional | :: | disabled |
Input is disabled. |
|
character(len=*), | intent(in), | optional | :: | id |
Input id. |
|
integer, | intent(in), | optional | :: | max |
Input max. value. |
|
integer, | intent(in), | optional | :: | max_length |
Input max. length. |
|
integer, | intent(in), | optional | :: | min |
Input min. value. |
|
integer, | intent(in), | optional | :: | min_length |
Input min. length. |
|
character(len=*), | intent(in), | optional | :: | name |
Input name. |
|
character(len=*), | intent(in), | optional | :: | pattern |
Input regular expression pattern. |
|
character(len=*), | intent(in), | optional | :: | placeholder |
Input placeholder. |
|
logical, | intent(in), | optional | :: | read_only |
Input is read-only. |
|
logical, | intent(in), | optional | :: | required |
Input is required. |
|
integer, | intent(in), | optional | :: | size |
Input size. |
|
character(len=*), | intent(in), | optional | :: | value |
Input value. |
Generated HTML.