//! Page components for user UI. //! //! Note: Editor pages and NewRealmPage have been moved to admin-ui. pub mod home; pub mod login; pub mod password_reset; pub mod profile; pub mod realm; pub mod signup; pub mod user_profile; pub use home::*; pub use login::*; pub use password_reset::*; pub use profile::*; pub use realm::*; pub use signup::*; pub use user_profile::*;