-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: add email, password fields and register navigation to LoginPage…
…View
- Loading branch information
MatheaGjerde
committed
Mar 11, 2026
1 parent
83063c9
commit c1ce598
Showing
5 changed files
with
101 additions
and
12 deletions.
There are no files selected for viewing
13 changes: 13 additions & 0 deletions
13
src/main/java/edu/group5/app/control/LoginPageController.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,13 @@ | ||
| package edu.group5.app.control; | ||
|
|
||
| public class LoginPageController { | ||
| private final MainController controller; | ||
|
|
||
| public LoginPageController(MainController controller) { | ||
| this.controller = controller; | ||
| } | ||
| public void handleRegisterBtn() { | ||
| System.out.println("Sign in button pressed"); | ||
| controller.showSignInPage(); | ||
| } | ||
| } |
4 changes: 4 additions & 0 deletions
4
src/main/java/edu/group5/app/control/SignInPageController.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,4 @@ | ||
| package edu.group5.app.control; | ||
|
|
||
| public class SignInPageController { | ||
| } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 4 additions & 0 deletions
4
src/main/java/edu/group5/app/view/loginpage/SignInPageView.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,4 @@ | ||
| package edu.group5.app.view.loginpage; | ||
|
|
||
| public class SignInView { | ||
| } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters