13 lines
455 B
Plaintext
13 lines
455 B
Plaintext
%%%===================================================================
|
|
%%% A simple form.
|
|
%%%===================================================================
|
|
{'div', #{class => "form-group"}, [
|
|
{label, #{ class => "form-label"
|
|
, for => "input-example-1", ["Name"]
|
|
}, []},
|
|
{input, #{ class => "form-input"
|
|
, type => "text"
|
|
, id => "input-example-1"
|
|
, placeholder => "Name"
|
|
}, []}
|
|
]}. |