hyaenidae/accounts/templates/inputs/text_input.rs.html
2020-12-15 20:40:41 -06:00

6 lines
217 B
HTML

@use hyaenidae_toolkit::{templates::text_input, TextInput};
@(name: &str, title: &str, value: Option<String>, error: Option<String>)
@:text_input(TextInput::new(name).title(title).value_opt(value).error_opt(error))