/// The HTML id for the countdown seconds input element.
pub const COUNTDOWN_SECONDS_ID: &str = "countdown-seconds";
/// The HTML name attribute for the countdown seconds input element.
pub const COUNTDOWN_SECONDS_NAME: &str = "seconds";
/// The HTML input type for the countdown seconds input element.
pub const TIMER_NUMBER_TYPE: &str = "number";
/// The HTML autocomplete attribute value for off.
pub const TIMER_AUTOCOMPLETE_OFF: &str = "off";
/// The HTML min attribute for the countdown seconds input element.
pub const COUNTDOWN_SECONDS_MIN: &str = "1";
/// The HTML max attribute for the countdown seconds input element.
pub const COUNTDOWN_SECONDS_MAX: &str = "3600";
/// The HTML placeholder for the countdown seconds input element.
pub const COUNTDOWN_SECONDS_PLACEHOLDER: &str = "Enter seconds...";