frontend implementing login

This commit is contained in:
filipriec
2025-03-25 15:57:45 +01:00
parent eba3f56ba3
commit c84fa4a692
5 changed files with 15 additions and 0 deletions

View File

@@ -71,6 +71,13 @@ impl IntroState {
self.selected_option == 1,
theme,
);
self.render_button(
f,
button_area[1],
"Login",
self.selected_option == 1,
theme,
);
}
fn render_button(&self, f: &mut Frame, area: Rect, text: &str, selected: bool, theme: &Theme) {