euv-example 0.5.6

An example application demonstrating the euv UI framework with reactive signals, custom components, and WebAssembly.
Documentation
/// The HTML id for the username input element.
pub(crate) const FORM_USERNAME_ID: &str = "form-username";

/// The HTML id for the email input element.
pub(crate) const FORM_EMAIL_ID: &str = "form-email";

/// The HTML id for the password input element.
pub(crate) const FORM_PASSWORD_ID: &str = "form-password";

/// The HTML id for the agree checkbox element.
pub(crate) const FORM_AGREE_ID: &str = "form-agree";

/// The HTML name attribute for the username input element.
pub(crate) const FORM_USERNAME_NAME: &str = "username";

/// The HTML name attribute for the email input element.
pub(crate) const FORM_EMAIL_NAME: &str = "email";

/// The HTML name attribute for the password input element.
pub(crate) const FORM_PASSWORD_NAME: &str = "password";

/// The HTML name attribute for the agree checkbox element.
pub(crate) const FORM_AGREE_NAME: &str = "agree";

/// The HTML input type for text.
pub(crate) const FORM_TEXT_TYPE: &str = "text";

/// The HTML input type for email.
pub(crate) const FORM_EMAIL_TYPE: &str = "email";

/// The HTML input type for password.
pub(crate) const FORM_PASSWORD_TYPE: &str = "password";

/// The HTML input type for checkbox.
pub(crate) const FORM_CHECKBOX_TYPE: &str = "checkbox";

/// The HTML autocomplete attribute value for username.
pub(crate) const FORM_AUTOCOMPLETE_USERNAME: &str = "username";

/// The HTML autocomplete attribute value for email.
pub(crate) const FORM_AUTOCOMPLETE_EMAIL: &str = "email";

/// The HTML autocomplete attribute value for new-password.
pub(crate) const FORM_AUTOCOMPLETE_NEW_PASSWORD: &str = "new-password";

/// The HTML autocomplete attribute value for off.
pub(crate) const FORM_AUTOCOMPLETE_OFF: &str = "off";

/// The HTML placeholder for the username input element.
pub(crate) const FORM_USERNAME_PLACEHOLDER: &str = "Enter username";

/// The HTML placeholder for the email input element.
pub(crate) const FORM_EMAIL_PLACEHOLDER: &str = "Enter email";

/// The HTML placeholder for the password input element.
pub(crate) const FORM_PASSWORD_PLACEHOLDER: &str = "Enter password";