html_sys/forms/mod.rs
1//! HTML provides a number of elements which can be used together to create forms which the user can fill out and submit to the website or application.
2mod button;
3pub use button::*;
4mod datalist;
5pub use datalist::*;
6mod fieldset;
7pub use fieldset::*;
8mod form;
9pub use form::*;
10mod input;
11pub use input::*;
12mod label;
13pub use label::*;
14mod legend;
15pub use legend::*;
16mod meter;
17pub use meter::*;
18mod optgroup;
19pub use optgroup::*;
20mod option;
21pub use option::*;
22mod output;
23pub use output::*;
24mod progress;
25pub use progress::*;
26mod select;
27pub use select::*;
28mod textarea;
29pub use textarea::*;