1 2 3 4 5 6 7 8 9 10 11 12
//! Forms and validation module. //! //! This module provides Django-style form handling and validation. //! //! # Examples //! //! ```rust,no_run //! use reinhardt::forms::{Form, ModelForm}; //! ``` #[cfg(feature = "forms")] pub use reinhardt_forms::*;