dm_html_input Function

public pure function dm_html_input(type, checked, disabled, id, max, max_length, min, min_length, name, pattern, placeholder, read_only, required, size, value) result(html)

Returns HTML input element.

Arguments

Type IntentOptional 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.

Return Value character(len=:), allocatable

Generated HTML.


Calls

proc~~dm_html_input~~CallsGraph proc~dm_html_input dm_html_input interface~dm_itoa dm_itoa proc~dm_html_input->interface~dm_itoa