* New functionality to set meta data on businesscards. * Can develop a user profile. * Business cards link to user profile.
19 lines
375 B
Rust
19 lines
375 B
Rust
//! 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::*;
|