A derive macro to generate HTML forms from structs.
Currently in early development, only input with all its attributes is handled right now.
Docs: https://docs.rs/formy/
```rust use formy::Form;
struct UserLogin { #[input(pattern = r"[\w]+")] #[label = "Username:"] username: String, #[input(type = "email", name = "realemail", class="py-4", id = "email")] email: String, #[input(type = "password")] #[label = "Password:"] password: String, somefield: String, }
let form = UserLogin::to_html(); ```
License: MIT