/// The HTML id for the modal name input element.
pub const MODAL_NAME_ID: &str = "modal-name";
/// The HTML id for the modal email input element.
pub const MODAL_EMAIL_ID: &str = "modal-email";
/// The HTML name attribute for the modal name input element.
pub const MODAL_NAME_NAME: &str = "name";
/// The HTML name attribute for the modal email input element.
pub const MODAL_EMAIL_NAME: &str = "email";
/// The HTML input type for the modal name input element.
pub const MODAL_TEXT_TYPE: &str = "text";
/// The HTML input type for the modal email input element.
pub const MODAL_EMAIL_TYPE: &str = "email";
/// The HTML autocomplete attribute value for name.
pub const MODAL_AUTOCOMPLETE_NAME: &str = "name";
/// The HTML autocomplete attribute value for email.
pub const MODAL_AUTOCOMPLETE_EMAIL: &str = "email";
/// The HTML placeholder for the modal name input element.
pub const MODAL_NAME_PLACEHOLDER: &str = "Enter your name";
/// The HTML placeholder for the modal email input element.
pub const MODAL_EMAIL_PLACEHOLDER: &str = "Enter your email";