login page being implemented slowly

This commit is contained in:
filipriec
2025-03-25 16:02:23 +01:00
parent c84fa4a692
commit 45fff34c4c
3 changed files with 138 additions and 9 deletions

View File

@@ -11,6 +11,7 @@ pub struct UiState {
pub show_intro: bool,
pub show_admin: bool,
pub show_form: bool,
pub show_login: bool,
pub intro_state: IntroState,
}
@@ -75,6 +76,7 @@ impl Default for UiState {
show_intro: true,
show_admin: false,
show_form: false,
show_login: false,
intro_state: IntroState::new(),
}
}