Compare commits
2 Commits
27710e92af
...
c7d0514c43
Author | SHA1 | Date | |
---|---|---|---|
c7d0514c43 | |||
702677b65b |
@ -18,7 +18,7 @@ public class HelloApplication extends Application {
|
||||
public void start(Stage stage) throws IOException {
|
||||
FXMLLoader fxmlLoader = new FXMLLoader(HelloApplication.class.getResource("login-view.fxml"));
|
||||
Scene scene = new Scene(fxmlLoader.load(), 950,480);
|
||||
//stage = primary;
|
||||
primary = stage;
|
||||
stage.setTitle("Essen Bestellung im Kindergarten");
|
||||
stage.setScene(scene);
|
||||
stage.show();
|
||||
|
@ -1,4 +1,4 @@
|
||||
/*Richard Reiswich*/
|
||||
/*Reshad Meher*/
|
||||
package com.bib.essensbestellungsverwaltung;
|
||||
|
||||
import javafx.beans.NamedArg;
|
||||
@ -17,7 +17,6 @@ import java.util.HashMap;
|
||||
public class LoginController {
|
||||
@FXML
|
||||
private TextField tfEmail;
|
||||
|
||||
@FXML
|
||||
private PasswordField pfPassword;
|
||||
|
||||
@ -30,15 +29,11 @@ public class LoginController {
|
||||
if(benutzerMap.containsKey(email) && benutzerMap.containsValue(password)){
|
||||
FXMLLoader fxmlLoader = new FXMLLoader(HelloApplication.class.getResource("menue-view.fxml"));
|
||||
Scene scene = new Scene(fxmlLoader.load(), 950,480);
|
||||
Stage stage = new Stage();
|
||||
stage.setTitle("Essen Bestellung im Kindergarten");
|
||||
stage.setScene(scene);
|
||||
stage.show();
|
||||
HelloApplication.primary.setScene(scene);
|
||||
}else {
|
||||
Alert alert = new Alert(Alert.AlertType.ERROR,"Email oder Passwort ist falsch");
|
||||
alert.showAndWait();
|
||||
}
|
||||
|
||||
tfEmail.setText("");
|
||||
pfPassword.setText("");
|
||||
}
|
||||
@ -46,10 +41,6 @@ public class LoginController {
|
||||
protected void changeToSignUp() throws IOException {
|
||||
FXMLLoader fxmlLoader = new FXMLLoader(HelloApplication.class.getResource("signUp-view.fxml"));
|
||||
Scene scene = new Scene(fxmlLoader.load(), 950,480);
|
||||
Stage stage = new Stage();
|
||||
stage.setTitle("Essen Bestellung im Kindergarten");
|
||||
stage.setScene(scene);
|
||||
stage.show();
|
||||
|
||||
HelloApplication.primary.setScene(scene);
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user